blob: 4ef8243270543505223875b78dcbf5ab36655d54 (
plain)
1
2
3
4
5
6
7
|
import {createControlComponent} from '@react-leaflet/core';
import {LocateControl as LeafletLocateControl} from 'leaflet.locatecontrol';
import "leaflet.locatecontrol/dist/L.Control.Locate.min.css";
export const LocateControl = createControlComponent(
(props) => new LeafletLocateControl(props)
);
|