From 67d7ce8e0f428c521d3d032e8145108c9b2a5f45 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 22 May 2022 09:57:51 -0700 Subject: Rename map plugins --- modern/src/map/MapCurrentLocation.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 modern/src/map/MapCurrentLocation.js (limited to 'modern/src/map/MapCurrentLocation.js') diff --git a/modern/src/map/MapCurrentLocation.js b/modern/src/map/MapCurrentLocation.js new file mode 100644 index 00000000..691c6be3 --- /dev/null +++ b/modern/src/map/MapCurrentLocation.js @@ -0,0 +1,21 @@ +import maplibregl from 'maplibre-gl'; +import { useEffect } from 'react'; +import { map } from './core/Map'; + +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; -- cgit v1.2.3