aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/ReplayPathMap.js
diff options
context:
space:
mode:
authorDesmond Kyeremeh <elDekyfin@gmail.com>2021-07-09 19:19:34 +0000
committerDesmond Kyeremeh <elDekyfin@gmail.com>2021-07-09 19:19:34 +0000
commitefe18c504a834760242937572b369530c552e589 (patch)
tree913c472f0fb37bd2ef47a5890e512ba41a5d8480 /modern/src/map/ReplayPathMap.js
parent2a0705f1c26befa75703238462930847b18895e1 (diff)
parent627cf95d59f625dcb0544bfd4c067d99dee4bb93 (diff)
downloadetbsa-traccar-web-efe18c504a834760242937572b369530c552e589.tar.gz
etbsa-traccar-web-efe18c504a834760242937572b369530c552e589.tar.bz2
etbsa-traccar-web-efe18c504a834760242937572b369530c552e589.zip
Merge remote-tracking branch 'upstream/master' into group-config
Diffstat (limited to 'modern/src/map/ReplayPathMap.js')
-rw-r--r--modern/src/map/ReplayPathMap.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/map/ReplayPathMap.js b/modern/src/map/ReplayPathMap.js
index feab071..b40aa69 100644
--- a/modern/src/map/ReplayPathMap.js
+++ b/modern/src/map/ReplayPathMap.js
@@ -1,4 +1,4 @@
-import mapboxgl from 'mapbox-gl';
+import maplibregl from 'maplibre-gl';
import { useEffect } from 'react';
import { map } from './Map';
@@ -46,7 +46,7 @@ const ReplayPathMap = ({ positions }) => {
},
});
if (coordinates.length) {
- const bounds = coordinates.reduce((bounds, item) => bounds.extend(item), new mapboxgl.LngLatBounds(coordinates[0], coordinates[0]));
+ const bounds = coordinates.reduce((bounds, item) => bounds.extend(item), new maplibregl.LngLatBounds(coordinates[0], coordinates[0]));
map.fitBounds(bounds, {
padding: { top: 50, bottom: 250, left: 25, right: 25 },
});