2021-10-18 17:19:45 +13:00
|
|
|
import { useState } from "react"
|
|
|
|
|
|
|
|
import { MapContainer, TileLayer, Marker, Popup, useMapEvents, useMap } from 'react-leaflet'
|
2021-10-18 17:09:56 +13:00
|
|
|
|
|
|
|
const NZ_BOUNDS = [
|
|
|
|
[-47.204642, 165.344238],
|
|
|
|
[-34.307144, 179.824219]
|
|
|
|
]
|
|
|
|
|
2021-10-18 17:19:45 +13:00
|
|
|
function LocationMarker() {
|
|
|
|
const [position, setPosition] = useState(null)
|
|
|
|
useMapEvents({
|
|
|
|
click(e) {
|
|
|
|
setPosition(e.latlng)
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
return position === null ? null : (
|
|
|
|
<Marker position={position}>
|
|
|
|
<Popup>
|
|
|
|
<strong>Latitude:</strong> {position.lat} <br/>
|
|
|
|
<strong>Longitude:</strong> {position.lng}
|
|
|
|
</Popup>
|
|
|
|
</Marker>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-18 17:09:56 +13:00
|
|
|
function FitNewZealandBounds() {
|
|
|
|
const map = useMap()
|
|
|
|
map.fitBounds(NZ_BOUNDS)
|
|
|
|
return null
|
|
|
|
}
|
2021-10-18 15:46:18 +13:00
|
|
|
|
|
|
|
export default function Map() {
|
|
|
|
return (
|
|
|
|
<div className="map-container">
|
2021-10-18 17:09:56 +13:00
|
|
|
<MapContainer scrollWheelZoom={true}>
|
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-18 17:19:45 +13:00
|
|
|
<LocationMarker />
|
2021-10-18 17:09:56 +13:00
|
|
|
<FitNewZealandBounds />
|
2021-10-18 15:46:18 +13:00
|
|
|
</MapContainer>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|