美文网首页
高德地图自定义图标

高德地图自定义图标

作者: daozun | 来源:发表于2021-11-04 09:23 被阅读0次

在此记录:

                        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();

相关文章

网友评论

      本文标题:高德地图自定义图标

      本文链接:https://www.haomeiwen.com/subject/fngzaltx.html