Socket
Socket
Sign inDemoInstall

google-elevation-api

Package Overview
Dependencies
5
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    google-elevation-api

This module will help reading the Google Maps Elevation API


Version published
Weekly downloads
3
decreased by-66.67%
Maintainers
1
Install size
660 kB
Created
Weekly downloads
 

Readme

Source

google-elevation-api

experimental

This module will help reading the Google Maps Elevation API.

Example

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);
});

Usage

NPM

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/
}

License

MIT, see LICENSE.md for details.

Keywords

FAQs

Last updated on 23 Jun 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc