aboutsummaryrefslogtreecommitdiff
path: root/src/map/MapCurrentLocation.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/MapCurrentLocation.js')
-rw-r--r--src/map/MapCurrentLocation.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/map/MapCurrentLocation.js b/src/map/MapCurrentLocation.js
new file mode 100644
index 00000000..66fc46ec
--- /dev/null
+++ b/src/map/MapCurrentLocation.js
@@ -0,0 +1,21 @@
+import maplibregl from 'maplibre-gl';
+import { useEffect } from 'react';
+import { map } from './core/MapView';
+
+const MapCurrentLocation = () => {
+ useEffect(() => {
+ const control = new maplibregl.GeolocateControl({
+ positionOptions: {
+ enableHighAccuracy: true,
+ timeout: 5000,
+ },
+ trackUserLocation: true,
+ });
+ map.addControl(control);
+ return () => map.removeControl(control);
+ }, []);
+
+ return null;
+};
+
+export default MapCurrentLocation;