Created
August 16, 2019 17:51
-
-
Save leighhalliday/2b7b207cdd60e28824629cac15630d0b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect } from "react"; | |
import { | |
withGoogleMap, | |
withScriptjs, | |
GoogleMap, | |
Marker, | |
InfoWindow | |
} from "react-google-maps"; | |
import * as parkData from "./data/skateboard-parks.json"; | |
import mapStyles from "./mapStyles"; | |
function Map({ myCoords }) { | |
const [selectedPark, setSelectedPark] = useState(null); | |
useEffect(() => { | |
const listener = e => { | |
if (e.key === "Escape") { | |
setSelectedPark(null); | |
} | |
}; | |
window.addEventListener("keydown", listener); | |
return () => { | |
window.removeEventListener("keydown", listener); | |
}; | |
}, []); | |
return ( | |
<GoogleMap | |
defaultZoom={10} | |
defaultCenter={{ lat: 45.4211, lng: -75.6903 }} | |
defaultOptions={{ styles: mapStyles }} | |
> | |
<Marker position={myCoords} /> | |
{parkData.features.map(park => ( | |
<Marker | |
key={park.properties.PARK_ID} | |
position={{ | |
lat: park.geometry.coordinates[1], | |
lng: park.geometry.coordinates[0] | |
}} | |
onClick={() => { | |
setSelectedPark(park); | |
}} | |
icon={{ | |
url: `/skateboarding.svg`, | |
scaledSize: new window.google.maps.Size(25, 25) | |
}} | |
/> | |
))} | |
{selectedPark && ( | |
<InfoWindow | |
onCloseClick={() => { | |
setSelectedPark(null); | |
}} | |
position={{ | |
lat: selectedPark.geometry.coordinates[1], | |
lng: selectedPark.geometry.coordinates[0] | |
}} | |
> | |
<div> | |
<h2>{selectedPark.properties.NAME}</h2> | |
<p>{selectedPark.properties.DESCRIPTIO}</p> | |
</div> | |
</InfoWindow> | |
)} | |
</GoogleMap> | |
); | |
} | |
const MapWrapped = withScriptjs(withGoogleMap(Map)); | |
export default function App() { | |
return ( | |
<div style={{ width: "100vw", height: "100vh" }}> | |
<MapWrapped | |
googleMapURL={`https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=geometry,drawing,places&key=${ | |
process.env.REACT_APP_GOOGLE_KEY | |
}`} | |
loadingElement={<div style={{ height: `100%` }} />} | |
containerElement={<div style={{ height: `100%` }} />} | |
mapElement={<div style={{ height: `100%` }} />} | |
myCoords={{ lat: 42.61679, lng: -81.1322524 }} | |
/> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment