mapboxgl区划标签避让不遮盖实现

mapboxgl区划标签避让不遮盖实现

mapboxgl地图区划标签采用Marker实现导致密集区域会相互遮盖

new mapboxgl.Marker(el)
        .setLngLat([dataTemp.lon,dataTemp.lat])
        .addTo(map);

经过查阅资料后决定采用Source cluster方式解决,clusterRadius可以根据地图缩放自动聚合检测,聚合半径可设置
1、首先添加一个addSource

    map.addSource(sourceId, {
      "type": "geojson",
      "data": {
          "type": "FeatureCollection",
          "features": _this.formatData(datas,map) 
      },
      "cluster": true,
      "clusterRadius": 35 // 聚合半径
    });

2、添加区划标签图层

    map.addLayer({//添加区划标签图层
      'id': layerId,
      'type': 'symbol',
      'source': sourceId,
      'layout': {
        'visibility': 'visible',
        'text-field': ['get', 'regionname'],
        'text-font': ['Helvetica Neue', 'Arial', 'Helvetica', 'sans-serif'],
        'text-offset': [0, 0],
        'text-anchor': 'top',
        'text-size':14,
      },
      'paint':{
        'text-color':'#000000',
        
      }
    });

3、鼠标经过区划文字弹出小窗口展示信息,此处采用Popup方便后期扩展

    map.on('mouseenter', layerId, function(e) {
      let markerData = e.features[0].properties;
      _this.clearMarker(map);//先清除上次的弹窗
      _this.addMarker(markerData,map);//打开本次区划弹窗
    });
addMarker(){
    let className = 'region-selected-marker-box region-selected-marker-box-';
    let html = "自定义现实内容";
    var popup = new mapboxgl.Popup({
      offset: [20,5], 
      className: className,
      anchor:'left',
      closeButton:false
    })
      .setLngLat([lon,lat])
      .setHTML(html)
      .setMaxWidth("300px")
      .addTo(map);
 }

到此,地区区划标签主动避让就已经实现了,此种方式的优势是不需要重复计算,利用地图cluster属性即可实现,clusterRadius可以设置聚合半径

你可能感兴趣的:(前端,地图开发,标签,mapbox)