2021-10-18 17:09:56 +13:00
|
|
|
import { MapContainer, TileLayer, useMap } from 'react-leaflet'
|
|
|
|
|
|
|
|
const NZ_BOUNDS = [
|
|
|
|
[-47.204642, 165.344238],
|
|
|
|
[-34.307144, 179.824219]
|
|
|
|
]
|
|
|
|
|
|
|
|
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:09:56 +13:00
|
|
|
<FitNewZealandBounds />
|
2021-10-18 15:46:18 +13:00
|
|
|
</MapContainer>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|