diff --git a/frontend/src/components/steps/location/Map.js b/frontend/src/components/steps/location/Map.js index fb9e85f..e38ce6f 100644 --- a/frontend/src/components/steps/location/Map.js +++ b/frontend/src/components/steps/location/Map.js @@ -1,18 +1,25 @@ -import { MapContainer, TileLayer, Marker, Popup } from 'react-leaflet' +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 +} export default function Map() { return (
- + - - - A pretty CSS3 popup.
Easily customizable. -
-
+
)