Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@google/maps
Advanced tools
Use Node.js? Want to geocode something? Looking for directions? This library brings the Google Maps API Web Services to your Node.js application.
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.
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.
$ 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()
var 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/.
Each Google Maps Web Service request requires an API key or client ID. API keys are freely available with a Google Account at https://developers.google.com/console. The type of API key you need is a Server key.
To get an API key:
For guided help, follow the instructions for the Directions API. You only need one API key, but remember to enable all the APIs you need. For even more information, see the guide to API keys.
When you have an API key, you can create a client object:
var googleMapsClient = require('@google/maps').createClient({
key: 'your API key here'
});
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.
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
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.
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'
FAQs
Node.js client library for Google Maps API Web Services
The npm package @google/maps receives a total of 9,923 weekly downloads. As such, @google/maps popularity was classified as popular.
We found that @google/maps demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.