Google Map React Component Tutorial
A declarative Google Map React component using React, lazy-loading dependencies, current-location finder and a test-driven approach by the Fullstack React team.
Quickstart
First, install the library:
Automatically Lazy-loading Google API
The library includes a helper to wrap around the Google maps API. The GoogleApiWrapper
Higher-Order component accepts a configuration object which must include an apiKey
. See lib/GoogleApi.js for all options it accepts.
If you want to add a loading container other than the default loading container, simply pass it in the HOC, like so:
Sample Usage With Lazy-loading Google API:
Note: Marker and InfoWindow components are disscussed below.
Additional Map Props
The Map component takes a number of optional props.
Zoom: (Shown Above) takes a number with the higher value representing a tighter focus on the map's center.
Style: Takes CSS style object - commonly width and height.
initalCenter: Takes an object containing latitude and longitude coordinates. Sets the maps center upon loading.
center: Takes an object containing latitude and longitude coordinates. Use this if you want to re-render the map after the initial render.
It also takes event handlers described below:
Events
The <Map />
component handles events out of the box. All event handlers are optional.
onReady
When the <Map />
instance has been loaded and is ready on the page, it will call the onReady
prop, if given. The onReady
prop is useful for fetching places or using the autocomplete API for places.
onClick
To listen for clicks on the <Map />
component, pass the onClick
prop:
onDragend
When our user changes the map center by dragging the Map around, we can get a callback after the event is fired with the onDragend
prop:
Visibility
You can control the visibility of the map by using the visible
prop. This is useful for situations when you want to use the Google Maps API without a map. The <Map />
component will load like normal. See the Google places demo
For example:
Subcomponents
The <Map />
api includes subcomponents intended on being used as children of the Map
component. Any child can be used within the Map
component and will receive the three props
(as children):
map
- the Google instance of themap
google
- a reference to thewindow.google
objectmapCenter
- thegoogle.maps.LatLng()
object referring to the center of the map instance
Marker
To place a marker on the Map, include it as a child of the <Map />
component.
The <Marker />
component accepts a position
prop that defines the location for the position
on the map. It can be either a raw object or a google.maps.LatLng()
instance.
If no position
is passed in the props
, the marker will default to the current position of the map, i.e. the mapCenter
prop.
You can also pass any other props
you want with the <Marker />
. It will be passed back through marker events.
Events
The <Marker />
component listens for events, similar to the <Map />
component.
onClick
You can listen for an onClick
event with the (appropriately named) onClick
prop.
mouseover
You can also pass a callback when the user mouses over a <Marker />
instance by passing the onMouseover
callback:
Polygon
To place a polygon on the Map, set <Polygon />
as child of Map component.
Events
The <Polygon />
component listens to onClick
, onMouseover
and onMouseout
events.
Polyline
To place a polyline on the Map, set <Polyline />
as child of Map component.
Events
The <Polyline />
component listens to onClick
, onMouseover
and onMouseout
events.
InfoWindow
The <InfoWindow />
component included in this library is gives us the ability to pop up a "more info" window on our Google map.
The visibility of the <InfoWindow />
component is controlled by a visible
prop. The visible
prop is a boolean (PropTypes.bool
) that shows the <InfoWindow />
when true and hides it when false.
There are two ways how to control a position of the <InfoWindow />
component.
You can use a position
prop or connect the <InfoWindow />
component directly to an existing <Marker />
component by using a marker
prop.
Events
The <InfoWindow />
throws events when it's showing/hiding. Every event is optional and can accept a handler to be called when the event is fired.
onClose
The onClose
event is fired when the <InfoWindow />
has been closed. It's useful for changing state in the parent component to keep track of the state of the <InfoWindow />
.
onOpen
The onOpen
event is fired when the window has been mounted in the Google map instance. It's useful for keeping track of the state of the <InfoWindow />
from within the parent component.
The GoogleApiWrapper
automatically passes the google
instance loaded when the component mounts (and will only load it once).
Manually loading the Google API
If you prefer not to use the automatic loading option, you can also pass the window.google
instance as a prop
to your <Map />
component.
Issues?
If you have some issues, please make an issue on the issues tab and try to include an example. We've had success with https://codesandbox.io
An example template might look like: https://codesandbox.io/s/x3xxjr7r04
Contributing
The Google Map React component library uses React and the Google API to give easy access to the Google Maps library.