Browse Source

Merge pull request #153 from emailvomitcomet/enable-map-control

Enable map control
pull/157/head
Sacha Weatherstone 2 years ago
committed by GitHub
parent
commit
8a4950d1f4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 10
      src/pages/Map.tsx

10
src/pages/Map.tsx

@ -73,9 +73,9 @@ export const MapPage = (): JSX.Element => {
}, [map]); }, [map]);
useEffect(() => { useEffect(() => {
if (map) { map?.on("load", () => {
getBBox(); getBBox();
} });
}, [map, getBBox]); }, [map, getBBox]);
return ( return (
@ -131,9 +131,9 @@ export const MapPage = (): JSX.Element => {
dragRotate={false} dragRotate={false}
touchZoomRotate={false} touchZoomRotate={false}
initialViewState={{ initialViewState={{
zoom: 10, zoom: 1.6,
latitude: -38, latitude: 35,
longitude: 145, longitude: 0,
}} }}
> >
{waypoints.map((wp) => ( {waypoints.map((wp) => (

Loading…
Cancel
Save