Skip to content

Google Maps API

Jared James edited this page Mar 2, 2020 · 6 revisions

Google Maps

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>
Clone this wiki locally