动态放大以适应所有的标记React-leaflet。

问题描述 投票:0回答:1

我正在使用react-leaflet.在我的react应用中显示地图,我也在地图上显示标记。我也在地图上显示标记。问题是缩放级别不合适,因为有时标记可能很近,有时会相距很远。有什么办法可以根据标记的距离来设置缩放级别,让用户可以一次看到所有的标记?

以下是我的代码


<Map center={center} maxZoom={9} zoom={5}>
  <MarkerClusterGroup showCoverageOnHover={false}>
    {
      markers.map(({fillColor, position, id}) => 
         <CircleMarker fillColor={fillColor} color={darken(0.1, fillColor)} radius={10} fillOpacity={1} key={id} center={position} onClick={this.onClick} />
    }
  </MarkerClusterGroup>
</Map>

P.S: 我的react-leaflet版本是2.4.0。

reactjs leaflet react-leaflet
1个回答
0
投票

假设 MarkerClusterGroup 是来自 react-leaflet-markercluster 包,下面的例子演示了如何自动变焦以覆盖可见的标记。

function CustomLayer(props) {
  const groupRef = useRef(null);
  const { markers } = props;
  const mapContext = useLeaflet();
  const { map} = mapContext; //get map instance

  useEffect(() => {
    const group = groupRef.current.leafletElement; //get leaflet.markercluster instance  
    map.fitBounds(group.getBounds());  //zoom to cover visible markers
  }, []);

  return (
    <MarkerClusterGroup ref={groupRef} showCoverageOnHover={false}>
      {markers.map(({ fillColor, position, id }) => (
        <CircleMarker
          fillColor={fillColor}
          radius={10}
          fillOpacity={1}
          key={id}
          center={position}
        />
      ))}
    </MarkerClusterGroup>
  );
}

使用方法

function MapExample(props) {
  const { markers, center } = props;
  return (
    <Map center={center} maxZoom={9} zoom={5}>
      <TileLayer
        url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
        attribution='&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
      />
      <CustomLayer markers={markers} />
    </Map>
  );
}
© www.soinside.com 2019 - 2024. All rights reserved.