import { Marker, Popup, useMapEvents } from 'react-leaflet' import { LatLng } from 'leaflet' import { SetState } from '../utils/types' import { iconItem } from '../utils/markerIcons' type LocationMarkerProps = { address: string, position: LatLng, setPosition: SetState } function LocationMarker({ address, position, setPosition }: LocationMarkerProps) { const map = useMapEvents({ dragend: () => { setPosition(map.getCenter()) }, zoomend: () => { setPosition(map.getCenter()) }, resize: () => { setPosition(map.getCenter()) } }) return ( {address} {position.lat.toFixed(4)}, {position.lng.toFixed(4)} ) } export default LocationMarker