<map
ref="dotMap"
id="dotMap"
:latitude="centerPos[1]"
:longitude="centerPos[0]"
:style="mapStyle"
:markers="markers"
:circles="circles"
:polygons="polygon"
@markertap="handleMarkerTap"
@labeltap="handleMarkerTap"
>
<cover-image src="/static/icon/icon_map.png" class="map-icon" :style="mapIconStyle"></cover-image>
</map>
mapIconStyle() {
let left = this.mapCenterSize.width - 13
let top = this.mapCenterSize.height - 44
return {
left: left + 'px',
top: top + 'px'
}
}
.map-icon{
width: 26px;
height: 45px;
position: absolute;
z-index: 9;
}