高德地图自定义图标

2021-11-04  本文已影响0人  daozun

在此记录:

                        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();
上一篇 下一篇

猜你喜欢

热点阅读