generated from harakeke-2020/boilerplate-react-webpack
-
Notifications
You must be signed in to change notification settings - Fork 4
Google Maps API
Jared James edited this page Mar 2, 2020
·
6 revisions
We are using Maps JavaScript API to map our walk locations. This is a free service that lets you
- add a map to your website,
- providing imagery and local data from the same source as Google Maps.
- Style the map to suit your needs. Visualize your own data on the map, bring the world to life with Street View, and use services like geocoding and directions.
documentation for Google Maps can be found Here
<Map
google={this.props.google}
zoom={11}
style={mapStyles}
initialCenter={{ lat: -36.848461, lng: 174.763336 }}
>
{this.initialMarkers()}
{this.bounceMarker()}
</Map>