Я хочу реализовать MarkerClusterer в моей карте Google. Есть ли библиотека или компонент, который я могу использовать для того же. Спасибо. Вот так выглядит мой код. Спасибо.
const handleApiLoaded = ({ map, maps }: MapProps) => {
console.log(maps);
mapRef.current = { map, maps };
if (truckData.length > 0) {
const bounds = getBounds(maps);
map.fitBounds(bounds);
bindResizeListener(map, maps, bounds);
}
};
<GoogleMapReact
bootstrapURLKeys={{ key: `${process.env.REACT_APP_GOOGLE_MAPS_KEY}` }}
center={mapCenter}
defaultZoom={14}
options={{ zoomControlOptions: { position: 7 } }}
layerTypes={isTraffic ? ["TrafficLayer"] : []}
yesIWantToUseGoogleMapApiInternals
onGoogleApiLoaded={handleApiLoaded}
>
</<GoogleMapReact>
interface MapProps {
map: google.maps.Map;
maps: {
LatLngBounds: new () => google.maps.LatLngBounds;
};
Как использовать кластеризацию маркеров с библиотекой google-map-реагировать. Спасибо