diff options
Diffstat (limited to 'modern/src/map/MapCamera.js')
-rw-r--r-- | modern/src/map/MapCamera.js | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/modern/src/map/MapCamera.js b/modern/src/map/MapCamera.js deleted file mode 100644 index afb52f89..00000000 --- a/modern/src/map/MapCamera.js +++ /dev/null @@ -1,32 +0,0 @@ -import { useEffect } from 'react'; -import maplibregl from 'maplibre-gl'; -import { map } from './core/MapView'; - -const MapCamera = ({ - latitude, longitude, positions, coordinates, -}) => { - useEffect(() => { - if (coordinates || positions) { - if (!coordinates) { - coordinates = positions.map((item) => [item.longitude, item.latitude]); - } - if (coordinates.length) { - const bounds = coordinates.reduce((bounds, item) => bounds.extend(item), new maplibregl.LngLatBounds(coordinates[0], coordinates[0])); - const canvas = map.getCanvas(); - map.fitBounds(bounds, { - padding: Math.min(canvas.width, canvas.height) * 0.1, - duration: 0, - }); - } - } else { - map.jumpTo({ - center: [longitude, latitude], - zoom: Math.max(map.getZoom(), 10), - }); - } - }, [latitude, longitude, positions, coordinates]); - - return null; -}; - -export default MapCamera; |