1.1.3 • Published 4 years ago

@google/maps v1.1.3

Weekly downloads
85,800
License
Apache-2.0
Repository
github
Last release
4 years ago

Node.js Client for Google Maps Services

Build Status npm codecov GitHub contributors

This library has been deprecated in favor of @googlemaps/google-maps-services-js. Bug fixes will continue, however all new feature development will be on the master branch and published to the new library.

Use Node.js? Want to geocode something? Looking for directions? This library brings the Google Maps API Web Services to your Node.js application. Analytics

The Node.js Client for Google Maps Services is a Node.js Client library for the following Google Maps APIs:

Keep in mind that the same terms and conditions apply to usage of the APIs when they're accessed through this library.

Attention!

This library is designed for server-side Node.js applications. 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.

Features

  • Retry on Failure Automatically retry when intermittent failures occur. That is, when any of the retryable 5xx errors are returned from the API.

  • Rate-limiting Requests are rate-limited by the client, which helps prevent reaching the server-enforced rate limit.

Quick Start

$ npm install @google/maps

Note: You'll need to have npm 2.7.0 or greater installed, since this library is hosted as a scoped package.

Create a new client object by calling createClient()

const googleMapsClient = require('@google/maps').createClient({
  key: 'your API key here'
});

Make requests to the Google Maps APIs by calling methods on the client object.

// Geocode an address.
googleMapsClient.geocode({
  address: '1600 Amphitheatre Parkway, Mountain View, CA'
}, function(err, response) {
  if (!err) {
    console.log(response.json.results);
  }
});

You may use promise-based solution also.

const googleMapsClient = require('@google/maps').createClient({
  key: 'your API key here',
  Promise: Promise
});

googleMapsClient.geocode({address: '1600 Amphitheatre Parkway, Mountain View, CA'})
  .asPromise()
  .then((response) => {
    console.log(response.json.results);
  })
  .catch((err) => {
    console.log(err);
  });

For more usage examples, check out the tests.

View the reference documentation

Additional documentation for the included web services is available at https://developers.google.com/maps/.

API keys

Each Google Maps Web Service request requires an API key. To get an API key, follow the Get API Key instructions in our Maps JS API docs.

When you have an API key, you can create a client object:

var googleMapsClient = require('@google/maps').createClient({
  key: 'your API key here'
});

Client IDs

Google Maps APIs Premium Plan customers can use their client ID and secret to authenticate, instead of an API key.

var googleMapsClient = require('@google/maps').createClient({
  clientId: 'Add your client ID here',
  clientSecret: 'Add your client secret here',
});

Important: This key should be kept secret on your server.

Typescript

Community-built typings for this library are available in @types/google__maps (note the double underscore).

npm install @types/google__maps

Developing

In order to run the end-to-end tests, you'll need to supply your API key via an environment variable.

$ export GOOGLE_MAPS_API_KEY=AIza-your-api-key
$ npm test

Support

This library is community supported. We're comfortable enough with the stability and features of the library that we want you to build real production applications on it. We will try to support, through Stack Overflow, the public surface of the library and maintain backwards compatibility in the future; however, while the library is in version 0.x, we reserve the right to make backwards-incompatible changes. If we do remove some functionality (typically because better functionality exists or if the feature proved infeasible), our intention is to deprecate and give developers a year to update their code.

If you find a bug, or have a feature suggestion, please log an issue. If you'd like to contribute, please read How to Contribute.

Command-line Interface

Installing via npm also provides the googlemaps command-line utility, which can then be used to pipe JSON results to other command-line programs:

$ googlemaps directions --origin 'Sydney Town Hall' --destination 'Parramatta, NSW'
@withjoy/server-core@stefancfuchs/firefly-chatbotscreencloud-app-error-components4leaflabs-api-proxy@morsecodemedia/morsecodemirror-timetravelrangewell-dataproviderapi_orders@reldb/coregooglemaps-2-mapbox@infinitebrahmanuniverse/nolb-_goomrkresz@everything-registry/sub-chunk-369api-compassionang-google-mapgetmethefuckthere@afsharnia/vessel-tracking-uigrandcentralacx4-server-coregoogle-geocoder-cligoogle-places-collectorgoogle-place-near-byairport-lat-lon-listalley-cheetah@shiv_badiger/ng-clock@olymp/apollogridsome-source-gmaps-geocodegmp-io19-demoJotihuntReactgreendirect-apiadonis-googlemapsgeofencegeo-wifiimbrexerhowsmydriving-nycasksuite-coremagetaromagnet-google-mapsdata-feed-orchestratordevicegatelyft-clinscikitsolymp-googleolympontap-cliconvert-google-directionsneioo8-facebook-adapterastrazeneca-vdc@castcloudfm/playernode-red-contrib-viseo-google-mapsmeetherepowrpowr-googlepimatic-phoneplaces-finderqualtrics-mapplatform-vendor-v2position.tstarotmagicrescape-osmtegulatransport-tracker-serverthesis-polymertruly-serverwch-conversation-corerpscript-api-google-mapsworldstarzipcodes-usaway-clivuex-lq-form-elementstencil-mapstrapi-plugin-gmaps-api-servicesuber-clivb-example-component@iotechpis/modules@rduk/map-google-provider@reltio/mdm-sdkedk-route-verifier@unalayta/route-finderferrari-geocodeffub@tiidan/utilities@yatesdev/sineboard-datasource-drivetime@zalastax/nolb-_goo@phamvuit/common@mocapi/address-modulebusy-hoursiobroker.placesjcarless@cirrusct/geo@dexpenses/extractcredit-card-prompt@dotdev/reactive-click-and-collectclrjxloop-hapi-pluginsproxy-generics-google-mapsoracle-movie-ticket-demoreact-autosuggest-places@emcasa/places-autocomplete@fabrix/generics-google-mapsdrivehop
1.1.3

4 years ago

1.1.2

4 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.5.5

6 years ago

0.5.4

6 years ago

0.5.3

6 years ago

0.5.2

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.6

6 years ago

0.4.5

7 years ago

0.4.4

7 years ago

0.4.3

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.1

7 years ago

0.3.0

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago