3.0.3 • Published 7 years ago

mapbox-gl-directions v3.0.3

Weekly downloads
606
License
ISC
Repository
github
Last release
7 years ago

Mapbox GL Directions

A full featured directions plugin for mapbox-gl-js using the Mapbox Directions API.

Usage

var mapboxgl = require('mapbox-gl');
var MapboxDirections = require('mapbox-gl-directions');

var directions = new MapboxDirections({
  accessToken: 'YOUR-MAPBOX-ACCESS-TOKEN',
  unit: 'metric',
  profile: 'cycling'
});

var map = new mapboxgl.Map({
  container: 'map',
  style: 'mapbox://styles/mapbox/streets-v9'
});

map.addControl(directions, 'top-left');

Live example: https://www.mapbox.com/mapbox-gl-js/example/mapbox-gl-directions/

Deeper dive

See API.md for complete reference.

Contributing

See CONTRIBUTING.md.