
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
google-elevation-api
Advanced tools
This module will help reading the Google Maps Elevation API.
var elevationApi = require('google-elevation-api');
elevationApi({
key: 'GOOGLE MAPS API KEY',
locations: [
[43.669662, -79.282848],
[62.794543, 22.827826]
]
}, function(err, locations) {
if(err) {
console.log(err);
return;
}
console.log(locations);
});
require('google-elevation-api')(options, callback)
;This module exports a function you pass options
and a callback
to. options
should have your Google Maps API key in a variable called key
. And an array of locations
.
For example:
{
key: 'some google maps api key',
locations: [
[43.669662, -79.282848],
[62.794543, 22.827826]
]
}
locations
are formed are [lay, lng]
arrays.
The callback
should be a node style callback and returns an Error
or null
as the first argument and an Array
of elevation/location info as the second argument.
Each item in the Array
of returned locations contains the following:
{
elevation: 74.84200286865234, // in meters
location: [
43.66966, // lat
-79.28285 // lng
],
resolution: 152.7032318115234 // resolution of the sample
// for more info on resolution checkout
// https://developers.google.com/maps/documentation/elevation/
}
MIT, see LICENSE.md for details.
FAQs
This module will help reading the Google Maps Elevation API
We found that google-elevation-api 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.