Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/directions.js
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,27 @@ export default class MapboxDirections {
return this;
}

/**
* Sets profile. _Note:_ calling this method requires the [map load event](https://www.mapbox.com/mapbox-gl-js/api/#Map.load)
* to have run.
* @param {Array<number>|String} query An array of coordinates [lng, lat] or location name as a string.
* @returns {MapboxDirections} this
*/
setProfile(query) {
console.log(query);
if (typeof query === 'string') {
if (query === `mapbox/driving-traffic` ||
query === `mapbox/driving` ||
query === `mapbox/walking` ||
query === `mapbox/cycling`) {
this.actions.setProfile(query);
this.actions.eventEmit('profile', { query });
}
}

return this;
}

/**
* Returns the destination of the current route.
* @returns {Object} destination
Expand Down