首页 / 浏览问题 / 其他 / 问题详情
地图上通过map.addLayer()方法添加的这个蓝色点的图片怎么取消
41EXP 2020年03月23日

jsp页面展示如下

加载这个图片的点代码如下:

老师您好,还想问一个问题,这个图片的链接可以自己定义么,因为项目中还需要添加其他的一些图片

1个回答

marker图标是可以自定义的。L.marker([x,y],{icon:myicon})

可参考:https://blog.csdn.net/funkstill/article/details/85773103

20EXP 2020年03月23日
老师您好,非常感谢,这个添加其他的图片已经解决了,但是添加后怎么把这个图片从地图上去掉呢

定义this.featureGroup = L.featureGroup().addTo(this.map);

this.featureGroup.addLayer(marker);添加marker

this.featureGroup.clearLayers(); 删除已添加的marker

超图官方示例 https://iclient.supermap.io/examples/leaflet/editor.html#02_editFeatures

...