我有 45k 个 JSON 格式的坐标对象,我想将它们作为标记放在我的地图组件中。
我有以下代码:
const MapWithMarkers = withGoogleMap(props =>GoogleMap
defaultZoom={8}
defaultCenter={{ lat: -34.397, lng: 150.644 }}
>
<Marker
position={{ lat: -34.397, lng: 150.644 }}
/>
</GoogleMap>
);
<MapWithAMarker
containerElement={<div style={{ height: '400px' }} />}
mapElement={<div style={{ height: '100%' }} />}
/>
如何以最正确的方式实现?
谢谢你的时间。