here-maps-node

0.0.2 • Public • Published

Build Status

Here Maps API for Node.js

Inspired by the Google Maps API wrapper for Node.js

Forked from node-heremaps

This library implements the following Here Maps APIs.

Installation

npm install here-maps-node

What does it cover

Maps API REST SERVICES:

Usage

var HereMapsAPI = require('here-maps-node').default; // es5
import HereMapsAPI from 'here-maps-node'; // es6
 
var config = {
  app_id:   '<YOUR-APP-ID>',
  app_code: '<YOUR-APP-CODE>'
};
var hmAPI = new HereMapsAPI(config);
 
// geocode API
var geocodeParams = {
  "searchtext":    "121, Curtain Road, EC2A 3AD, London UK"
};
 
hmAPI.geocode(geocodeParams, function(err, result){
  console.log(result);
});
 
// matrix routing API
var matrixRoutingParams = {
  start0: "25.6586716,-100.3583278",
  destination0: "25.6522234,-100.2942806",
  mode: "fastest;car;traffic:enabled;" // this mode is set by default
};
 
hmAPI.matrixRouting(matrixRoutingParams, function(err, result){
  console.log(result);
});

Readme

Keywords

Package Sidebar

Install

npm i here-maps-node

Weekly Downloads

2

Version

0.0.2

License

MIT

Unpacked Size

14.7 kB

Total Files

10

Last publish

Collaborators

  • sp-dev