Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mapquest/directions

Package Overview
Dependencies
Maintainers
4
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mapquest/directions

JS interface to MapQuest Directions API. Returns GeoJSON with traffic segments.

  • 0.3.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
4
Created
Source

MQ-Directions

This is a JavaScript interface to the MapQuest Directions API. The route() method returns a Promise fulfilled with a GeoJSON FeatureCollection of available routes divided in traffic segments and maneuver points. It's up to you to style the results for map display with a custom style function based on the GeoJSON feature properties. The getShape() method returns a detailed route shape suitable for all zoom levels.

Example

const Directions = require('@mapquest/directions');
const directions = new Directions({key:'your-key'});

directions.route({
  locations: [
    'chicago, il',
    'lansing, mi'
  ],
  maxRoutes: 3,
  timeOverage: 99
})
.then(function(results){
    console.log('results is a GeoJSON of the available routes and maneuver points', results);

    const firstRouteId = results.properties.routeSessionIds[0];  //access routeSessionIds here
    return directions.getShape(firstRouteId)   //get the detailed route shape
})
.then(draw)

FAQs

Package last updated on 26 Jan 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc