aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/CurrentLocationMap.js
blob: 69724ce110bb1cebc293d93cad974445b2c892aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import maplibregl from 'maplibre-gl';
import { useEffect } from 'react';
import { map } from './Map';

const CurrentLocationMap = () => {
  useEffect(() => {
    const control = new maplibregl.GeolocateControl({
      positionOptions: {
        enableHighAccuracy: true,
        timeout: 5000,
      },
      trackUserLocation: true,
    });
    map.addControl(control);
    return () => map.removeControl(control);
  }, []);

  return null;
};

export default CurrentLocationMap;