在此记录:
const url = require('../../assets/image/location.png');
pointMarker = new AMap.Marker({
// 后端返回的经纬度
position: [monitorPointList.value[i].longitude, monitorPointList.value[i].latitude],
offset: new AMap.Pixel(-60, -60), //相对于基点的偏移位置
content: `<div class='outer'>
<img src="${url}" class="location_icon_inner"/>
</div>`,
});
// 没有标记点也要显示出地图
pointMarker.setMap(map);
// 清除标记点
map.clearMap();
网友评论