You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable multiple libraries from Google Maps API (#135)
Enable multiple libraries from Google Maps API.
Default: `places`.
The following change allows developers to include other Google Maps API libraries that they may need.
`libraries` will be an array of Libraries represented as strings. Eventually the array is returned as a string with `libraries.toString()`.
E.g)
```
libraries = ["places", "geometry"]
libraries.toString()
// outputs: places,geometry
```
In many use cases with Google Maps a developer may need to use more than one Library and the following PR covers these cases.
0 commit comments