
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
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
The npm package google-elevation-api receives a total of 4 weekly downloads. As such, google-elevation-api popularity was classified as not popular.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.