当前位置:   article > 正文

leaflet 批量加载、清除marker_leaflet清除当前所有mark

leaflet清除当前所有mark

leaflet 批量加载、清除marker

1、拿到原始数据循环遍历
2、获取每个marker添加到地图上

var polygon = L.marker(item.center,{ //item.center---每个点的中心坐标
  icon: L.divIcon({
     iconAnchor: [0, 0],
     iconSize: [28,28],
     html: `<div>.....</div>`, //html
     className: 'marker_all_style',//样式class定义
   })
 }).addTo(window.map);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3、添加到地图后,数据动态获取,动态加载marker,地图上已有的marker清除后重新绘制新的,保证与数据同步

//清空地图上已存在的marker
if (that.layerGroup !== null) {
	that.layerGroup.clearLayers(); //批量移除图层
}
layers.push(polygon);
//在此对layerGroup赋值
that.layerGroup = L.layerGroup(layers); //L.layerGroup----存储标记marker,整体进行处理
window.map.addLayer(that.layerGroup);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

完整代码

// 地图上添加marker
 function getSmartSignList(val) { //val---原始数据
      let that = this;
      // 清空地图上已存在
      if (that.layerGroup !== null) {
        that.layerGroup.clearLayers();
      }
      if (val.rows || val.data) {
        var layers = [];
        var polygon = null;
        (val.rows || val.data).map((item, index) => {
          let center;
            if (
            (item.reDevicePosition &&
            item.reDevicePosition.indexOf(",") != -1)
          ) {
            center = item.reDevicePosition.split(",");
          }
          item.center = [Number(center[1]), Number(center[0])]; //获取mraker中心坐标
          var polygon = L.marker(item.center,{
		    icon: L.divIcon({
		      iconAnchor: [0, 0],
		      iconSize: [28,28],
		      html: `<div>.....</div>`, //html
		      className: 'marker_all_style',//样式class定义
		    })
		  });
          polygon.on('click', function() {
          // .........点击marker的操作
          });
          polygon.on("mouseover", e => {
           // .........鼠标移入marker的操作
          })
          polygon.on("mouseout", e => {
             // .........鼠标移出marker的操作
          })
          layers.push(polygon);
          polygon.addTo(window.map);
        //在此对layerGroup赋值
        that.layerGroup = L.layerGroup(layers);
        window.map.addLayer(that.layerGroup);
      }
    },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/234862
推荐阅读
相关标签
  

闽ICP备14008679号