2021-10-18 17:19:45 +13:00
|
|
|
import { useState } from "react"
|
|
|
|
|
2021-10-19 09:56:26 +13:00
|
|
|
import { MapContainer, TileLayer, Marker, Popup, useMapEvents } from 'react-leaflet'
|
2021-10-18 17:09:56 +13:00
|
|
|
|
|
|
|
const NZ_BOUNDS = [
|
|
|
|
[-47.204642, 165.344238],
|
|
|
|
[-34.307144, 179.824219]
|
|
|
|
]
|
|
|
|
|
2021-10-19 08:48:45 +13:00
|
|
|
function LocationMarker(props) {
|
2021-10-18 17:19:45 +13:00
|
|
|
const [position, setPosition] = useState(null)
|
2021-10-19 09:56:26 +13:00
|
|
|
const map = useMapEvents({
|
2021-10-18 17:19:45 +13:00
|
|
|
click(e) {
|
2021-10-19 08:48:45 +13:00
|
|
|
const newPosition = e.latlng;
|
|
|
|
setPosition(newPosition);
|
2021-10-19 09:56:26 +13:00
|
|
|
props.updateFilterState({"coordinates": newPosition});
|
2021-10-19 09:03:42 +13:00
|
|
|
props.setNextDisabled(false);
|
2021-10-19 09:56:26 +13:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
map.whenReady(() => {
|
|
|
|
const savedCoordinates = props.filters["coordinates"];
|
|
|
|
if (!position && savedCoordinates) {
|
|
|
|
setPosition(savedCoordinates);
|
|
|
|
props.setNextDisabled(false);
|
|
|
|
map.flyTo(savedCoordinates, 9)
|
|
|
|
}
|
2021-10-18 17:19:45 +13:00
|
|
|
})
|
|
|
|
|
|
|
|
return position === null ? null : (
|
|
|
|
<Marker position={position}>
|
|
|
|
<Popup>
|
|
|
|
<strong>Latitude:</strong> {position.lat} <br/>
|
|
|
|
<strong>Longitude:</strong> {position.lng}
|
|
|
|
</Popup>
|
|
|
|
</Marker>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-19 09:56:26 +13:00
|
|
|
const fitNZBounds = (map) => {
|
|
|
|
map.fitBounds(NZ_BOUNDS);
|
2021-10-18 17:09:56 +13:00
|
|
|
}
|
2021-10-18 15:46:18 +13:00
|
|
|
|
2021-10-19 08:48:45 +13:00
|
|
|
export default function Map(props) {
|
2021-10-18 15:46:18 +13:00
|
|
|
return (
|
|
|
|
<div className="map-container">
|
2021-10-19 09:56:26 +13:00
|
|
|
<MapContainer scrollWheelZoom={true} whenCreated={fitNZBounds}>
|
2021-10-18 15:46:18 +13:00
|
|
|
<TileLayer
|
|
|
|
attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
|
|
|
|
url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
|
|
|
|
/>
|
2021-10-19 09:03:42 +13:00
|
|
|
<LocationMarker {...props} />
|
2021-10-18 15:46:18 +13:00
|
|
|
</MapContainer>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|