porridger/front/src/components/MapClickHandler.tsx
2023-08-15 23:33:58 +03:00

16 lines
364 B
TypeScript

import { useMapEvent } from 'react-leaflet'
import { LatLng } from 'leaflet'
import { SetState } from '../utils/types'
function MapClickHandler({ setPosition }: { setPosition: SetState<LatLng> }) {
const map = useMapEvent('click', (e) => {
setPosition(e.latlng)
map.setView(e.latlng)
})
return null
}
export default MapClickHandler