Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 837 Bytes

README.md

File metadata and controls

40 lines (26 loc) · 837 Bytes

code style: prettier JavaScript Style Guide

Here Map Wrapper API

Matching a GPS Trace

How to install

  $ npm install here-map-wrapper --save 

  or 

  $ yarn add here-map-wrapper

How to use

const config = {
  appId: 'your appId',
  appCode: 'your appCode'
}


const hereMap = new HereMapWrapper(config)

const locations = [
  {lat: 51.10177, lng: 0.39349},
  {lat: 51.10181, lng: 0.39335},
  {lat: 51.10255, lng: 0.39369}
]

hereMap.getPolyline(locations).then(function(polyline) {

  console.log(polyline)

  // polyline = 'ox{vHq|kA_@nB??{@_@??SI??OG??YMSK??[Q' 

})