diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-03 17:44:52 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-03 17:44:52 -0700 |
commit | f2f787e56b03c5806f0b7ce872f5450b6f733ae1 (patch) | |
tree | 3dd13fede659c41c707c0d57c6bab4366244b778 /modern/src/map/DefaultCameraMap.js | |
parent | 9ac0392dd839f6cb7669ca4a611cdf7be5bcbdd3 (diff) | |
download | trackermap-web-f2f787e56b03c5806f0b7ce872f5450b6f733ae1.tar.gz trackermap-web-f2f787e56b03c5806f0b7ce872f5450b6f733ae1.tar.bz2 trackermap-web-f2f787e56b03c5806f0b7ce872f5450b6f733ae1.zip |
Init default map camera
Diffstat (limited to 'modern/src/map/DefaultCameraMap.js')
-rw-r--r-- | modern/src/map/DefaultCameraMap.js | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/modern/src/map/DefaultCameraMap.js b/modern/src/map/DefaultCameraMap.js new file mode 100644 index 00000000..5e30d568 --- /dev/null +++ b/modern/src/map/DefaultCameraMap.js @@ -0,0 +1,52 @@ +import maplibregl from 'maplibre-gl'; +import { useEffect, useState } from 'react'; +import { useSelector } from 'react-redux'; +import { usePreference } from '../common/preferences'; +import { map } from './Map'; + +const DefaultCameraMap = () => { + const selectedDeviceId = useSelector((state) => state.devices.selectedId); + const positions = useSelector((state) => state.positions.items); + + const defaultLatitude = usePreference('latitude'); + const defaultLongitude = usePreference('longitude'); + const defaultZoom = usePreference('zoom'); + + const [initialized, setInitialized] = useState(false); + + useEffect(() => { + if (selectedDeviceId) { + setInitialized(true); + } else if (!initialized) { + if (defaultLatitude && defaultLongitude) { + map.jumpTo({ + center: [defaultLongitude, defaultLatitude], + zoom: defaultZoom, + }); + setInitialized(true); + } else { + const coordinates = Object.values(positions).map((item) => [item.longitude, item.latitude]); + if (coordinates.length > 1) { + const bounds = coordinates.reduce((bounds, item) => bounds.extend(item), new maplibregl.LngLatBounds(coordinates[0], coordinates[0])); + const canvas = map.getCanvas(); + map.fitBounds(bounds, { + duration: 0, + padding: Math.min(canvas.width, canvas.height) * 0.1, + }); + setInitialized(true); + } else if (coordinates.length) { + const [individual] = coordinates; + map.jumpTo({ + center: individual, + zoom: Math.max(map.getZoom(), 10), + }); + setInitialized(true); + } + } + } + }); + + return null; +}; + +export default DefaultCameraMap; |