Top Related Projects
π JavaScript library for mobile-friendly interactive maps πΊπ¦
OpenLayers
A lightweight set of tools for working with ArcGIS services in Leaflet. :rocket:
React.js Google Maps integration component
WebGL2 powered visualization framework
Quick Overview
The google-maps-services-js
repository is a Node.js client library for Google Maps API Web Services. It provides a simple and efficient way to interact with various Google Maps APIs, including Directions, Distance Matrix, Elevation, Geocoding, Time Zone, and Places APIs.
Pros
- Easy integration with Node.js applications
- Supports both Promise-based and callback-based programming styles
- Comprehensive coverage of Google Maps API Web Services
- Well-documented and actively maintained
Cons
- Requires a Google Cloud Platform API key or client ID
- Rate limiting and usage restrictions based on Google Maps API policies
- Limited to server-side usage (not suitable for client-side browser applications)
- Dependency on Google's services and potential future API changes
Code Examples
- Geocoding an address:
const { Client } = require("@googlemaps/google-maps-services-js");
const client = new Client({});
client
.geocode({
params: {
address: "1600 Amphitheatre Parkway, Mountain View, CA",
key: "YOUR_API_KEY",
},
})
.then((r) => {
console.log(r.data.results[0].geometry.location);
})
.catch((e) => {
console.log(e.response.data.error_message);
});
- Calculating distance between two points:
const { Client } = require("@googlemaps/google-maps-services-js");
const client = new Client({});
client
.distancematrix({
params: {
origins: ["Washington, DC"],
destinations: ["New York City, NY"],
key: "YOUR_API_KEY",
},
})
.then((r) => {
console.log(r.data.rows[0].elements[0].distance.text);
})
.catch((e) => {
console.log(e.response.data.error_message);
});
- Finding nearby places:
const { Client } = require("@googlemaps/google-maps-services-js");
const client = new Client({});
client
.placesNearby({
params: {
location: { lat: 40.7128, lng: -74.0060 },
radius: 1000,
type: "restaurant",
key: "YOUR_API_KEY",
},
})
.then((r) => {
console.log(r.data.results);
})
.catch((e) => {
console.log(e.response.data.error_message);
});
Getting Started
-
Install the library:
npm install @googlemaps/google-maps-services-js
-
Import the Client class and create an instance:
const { Client } = require("@googlemaps/google-maps-services-js"); const client = new Client({});
-
Use the client to make API calls, providing your API key:
client .elevation({ params: { locations: [{ lat: 45.5, lng: -122.7 }], key: "YOUR_API_KEY", }, }) .then((r) => { console.log(r.data.results[0].elevation); }) .catch((e) => { console.log(e.response.data.error_message); });
Competitor Comparisons
π JavaScript library for mobile-friendly interactive maps πΊπ¦
Pros of Leaflet
- Open-source and lightweight, making it more flexible and customizable
- Supports a wide range of map providers, not limited to Google Maps
- Large community and extensive plugin ecosystem
Cons of Leaflet
- Less comprehensive documentation compared to Google Maps
- Fewer built-in features, requiring more custom implementation
- May require additional plugins for advanced functionality
Code Comparison
Leaflet:
var map = L.map('map').setView([51.505, -0.09], 13);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: 'Β© OpenStreetMap contributors'
}).addTo(map);
google-maps-services-js:
const client = new Client({});
client.elevation({
params: {
locations: [{lat: 45, lng: -110}],
key: 'YOUR_API_KEY'
}
})
.then(r => console.log(r.data.results[0].elevation));
The Leaflet code focuses on map initialization and tile layer setup, while google-maps-services-js demonstrates API interaction for elevation data. Leaflet's approach is more front-end oriented, whereas google-maps-services-js is designed for server-side use with Google Maps APIs.
OpenLayers
Pros of OpenLayers
- Open-source and free to use without restrictions
- Supports a wide range of data formats and sources
- Highly customizable with extensive API and plugin ecosystem
Cons of OpenLayers
- Steeper learning curve compared to Google Maps
- Less comprehensive documentation and community support
- May require more setup and configuration for basic use cases
Code Comparison
OpenLayers:
import Map from 'ol/Map';
import View from 'ol/View';
import TileLayer from 'ol/layer/Tile';
import OSM from 'ol/source/OSM';
const map = new Map({
target: 'map',
layers: [new TileLayer({ source: new OSM() })],
view: new View({ center: [0, 0], zoom: 2 })
});
google-maps-services-js:
const { Client } = require("@googlemaps/google-maps-services-js");
const client = new Client({});
client
.elevation({
params: { locations: [{ lat: 45, lng: -110 }], key: "YOUR_API_KEY" },
timeout: 1000
})
.then(r => console.log(r.data.results[0].elevation))
.catch(e => console.log(e));
OpenLayers focuses on client-side map rendering, while google-maps-services-js is primarily for server-side API interactions. OpenLayers offers more flexibility for custom map implementations, whereas google-maps-services-js provides easier access to Google Maps services and data.
A lightweight set of tools for working with ArcGIS services in Leaflet. :rocket:
Pros of esri-leaflet
- Integrates seamlessly with Leaflet, a popular open-source mapping library
- Provides access to Esri's extensive collection of basemaps and data layers
- Offers a more lightweight solution for web mapping applications
Cons of esri-leaflet
- Limited to Esri's ecosystem, which may not be as versatile as Google Maps
- Requires an ArcGIS Online account for some features, potentially increasing costs
- May have a steeper learning curve for developers unfamiliar with Esri products
Code Comparison
esri-leaflet:
const map = L.map('map').setView([51.505, -0.09], 13);
L.esri.basemapLayer('Streets').addTo(map);
L.esri.featureLayer({url: 'https://services.arcgis.com/....'}).addTo(map);
google-maps-services-js:
const client = new Client({});
client.elevation({
params: {
locations: [{lat: 45, lng: -110}],
key: 'YOUR_API_KEY'
}
}).then(r => console.log(r.data.results[0].elevation));
Both libraries offer straightforward ways to create maps and access geospatial services, but they cater to different ecosystems and use cases. esri-leaflet is more focused on web mapping with Esri data, while google-maps-services-js provides a broader range of Google Maps API services.
React.js Google Maps integration component
Pros of react-google-maps
- Specifically designed for React applications, providing React components for easy integration
- Offers a higher level of abstraction, simplifying the process of adding Google Maps to React projects
- Includes additional features like drawing tools and custom overlays out of the box
Cons of react-google-maps
- Less flexible for non-React projects or when more direct control over the Google Maps API is needed
- May have a steeper learning curve for developers not familiar with React concepts
- Potentially larger bundle size due to React dependencies
Code Comparison
react-google-maps:
import { GoogleMap, Marker } from "react-google-maps"
const MyMapComponent = withGoogleMap((props) =>
<GoogleMap defaultZoom={8} defaultCenter={{ lat: -34.397, lng: 150.644 }}>
<Marker position={{ lat: -34.397, lng: 150.644 }} />
</GoogleMap>
)
google-maps-services-js:
const client = new Client({});
client
.elevation({
params: {
locations: [{ lat: 45, lng: -110 }],
key: "YOUR_API_KEY",
},
timeout: 1000,
})
.then((r) => {
console.log(r.data.results[0].elevation);
})
.catch((e) => {
console.log(e.response.data.error_message);
});
WebGL2 powered visualization framework
Pros of deck.gl
- Highly performant for rendering large datasets and complex visualizations
- Supports a wide range of 2D and 3D data visualization layers
- Integrates well with React and other web frameworks
Cons of deck.gl
- Steeper learning curve due to its extensive API and capabilities
- May be overkill for simple mapping needs or small datasets
- Requires more setup and configuration compared to Google Maps Services
Code Comparison
deck.gl example:
import DeckGL from '@deck.gl/react';
import {ScatterplotLayer} from '@deck.gl/layers';
const App = ({data, viewport}) => (
<DeckGL layers={[new ScatterplotLayer({data})]} initialViewState={viewport} />
);
Google Maps Services JS example:
const client = new Client({});
client
.elevation({params: {locations: [{lat: 45, lng: -110}], key: 'YOUR_API_KEY'}})
.then((r) => {
console.log(r.data.results[0].elevation);
})
.catch((e) => {
console.log(e);
});
Summary
deck.gl is a powerful data visualization library for creating complex, high-performance map visualizations, while Google Maps Services JS focuses on providing easy access to Google Maps APIs for various mapping services. deck.gl offers more flexibility and advanced rendering capabilities but requires more setup and expertise. Google Maps Services JS is simpler to use for basic mapping needs and integrates seamlessly with Google's ecosystem.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Node.js Client for Google Maps Services
[!IMPORTANT]
Some parts of this library are only compatible with Legacy Services. Using the Legacy Services requires enabling each API on your Google Cloud project by following the direct links: Places API (Legacy), Directions API (Legacy), Distance Matrix API (Legacy).
The newer Google Maps APIs each provide their own npm-package:
Description
This client library brings the following [Google Maps Web Services APIs] to your server-side Node.js applications:
As well as the following legacy APIs:
Requirements
- Sign up with Google Maps Platform
- A Google Maps Platform project with the desired API(s) from the above list enabled
- An API key associated with the project above
API Key Security
This client library is designed for use in server-side applications.
In either case, it is important to add API key restrictions to improve its security. Additional security measures, such as hiding your key from version control, should also be put in place to further improve the security of your API key.
Check out the API Security Best Practices guide to learn more.
[!NOTE] This library for server-side only Attempting to use it client-side, in either the browser or any other environment like React Native, may in some cases work, but mostly will not. Please refrain from reporting issues with these environments when attempting to use them, since server-side Node.js applications is the only supported environment for this library. For other environments, try the Maps JavaScript API, which contains a comparable feature set, and is explicitly intended for use with client-side JavaScript.
Usage
npm install @googlemaps/google-maps-services-js
Below is a simple example calling the elevation method on the client class.
Import the Google Maps Client using TypeScript and ES6 module:
import {Client} from "@googlemaps/google-maps-services-js";
Alternatively using JavaScript without ES6 module support:
const {Client} = require("@googlemaps/google-maps-services-js");
Now instantiate the client to make a call to one of the APIs.
const client = new Client({});
client
.elevation({
params: {
locations: [{ lat: 45, lng: -110 }],
key: process.env.MAPS_API_KEY,
},
timeout: 1000, // milliseconds
})
.then((r) => {
console.log(r.data.results[0].elevation);
})
.catch((e) => {
console.log(e.response.data.error_message);
});
Documentation
For more information, see the reference documentation. The TypeScript types are the authoritative documentation for this library and may differ slightly from the descriptions.
Developing
In order to run the end-to-end tests, you'll need to supply your API key via an environment variable.
$ export MAPS_API_KEY=YOUR_API_KEY
$ npm test
Migration
This section discusses the migration from @google/maps to @googlemaps/google-maps-services-js and the differences between the two.
Note: The two libraries do not share any methods or interfaces.
The primary difference is @google/maps
exposes a public method that takes individual parameters as arguments while @googlemaps/google-maps-services-js
exposes methods that take params
, headers
, body
, instance
(see Axios). This allows direct access to the transport layer without the complexity that was inherent in the old library. Below are two examples.
Old (@google/maps
)
const googleMapsClient = require('@google/maps').createClient({
key: 'your API key here'
});
googleMapsClient
.elevation({
locations: {lat: 45, lng: -110}
})
.asPromise()
.then(function(r) {
console.log(r.json.results[0].elevation);
})
.catch(e => {
console.log(e);
});
New (@googlemaps/google-maps-services-js
):
const client = new Client({});
client
.elevation({
params: {
locations: [{ lat: 45, lng: -110 }],
key: process.env.MAPS_API_KEY
},
timeout: 1000 // milliseconds
}, axiosInstance)
.then(r => {
console.log(r.data.results[0].elevation);
})
.catch(e => {
console.log(e);
});
The primary differences are in the following table.
Old | New |
---|---|
Can provide params | Can provide params, headers, instance, timeout (see Axios Request Config) |
API key configured at Client | API key configured per method in params object |
Retry is supported | Retry is configurable via axios-retry or retry-axios |
Does not use promises by default | Promises are default |
Typings are in @types/googlemaps | Typings are included |
Does not support keep alive | Supports keep alive |
Does not support interceptors | Supports interceptors |
Does not support cancelalation | Supports cancellation |
Premium Plan Authentication
Authentication via client ID and URL signing secret is provided to support legacy applications that use the Google Maps Platform Premium Plan. The Google Maps Platform Premium Plan is no longer available for sign up or new customers. All new applications must use API keys.
const client = new Client({});
client
.elevation({
params: {
locations: [{ lat: 45, lng: -110 }],
client_id: process.env.GOOGLE_MAPS_CLIENT_ID,
client_secret: process.env.GOOGLE_MAPS_CLIENT_SECRET
},
timeout: 1000 // milliseconds
})
.then(r => {
console.log(r.data.results[0].elevation);
})
.catch(e => {
console.log(e.response.data.error_message);
});
Contributing
Contributions are welcome and encouraged! If you'd like to contribute, send us a pull request and refer to our code of conduct and contributing guide.
Terms of Service
This library uses Google Maps Platform services. Use of Google Maps Platform services through this library is subject to the Google Maps Platform Terms of Service.
This library is not a Google Maps Platform Core Service. Therefore, the Google Maps Platform Terms of Service (e.g. Technical Support Services, Service Level Agreements, and Deprecation Policy) do not apply to the code in this library.
Support
This library is offered via an open source license. It is not governed by the Google Maps Platform Support [Technical Support Services Guidelines, the SLA, or the Deprecation Policy. However, any Google Maps Platform services used by the library remain subject to the Google Maps Platform Terms of Service.
This library adheres to semantic versioning to indicate when backwards-incompatible changes are introduced. Accordingly, while the library is in version 0.x, backwards-incompatible changes may be introduced at any time.
If you find a bug, or have a feature request, please file an issue on GitHub. If you would like to get answers to technical questions from other Google Maps Platform developers, ask through one of our developer community channels. If you'd like to contribute, please check the contributing guide.
You can also discuss this library on our Discord server.
Top Related Projects
π JavaScript library for mobile-friendly interactive maps πΊπ¦
OpenLayers
A lightweight set of tools for working with ArcGIS services in Leaflet. :rocket:
React.js Google Maps integration component
WebGL2 powered visualization framework
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot