Skip to content

Commit

Permalink
expose setProfile
Browse files Browse the repository at this point in the history
  • Loading branch information
chaupow committed Jul 5, 2018
1 parent 07ebea2 commit 99c2249
Showing 1 changed file with 21 additions and 0 deletions.
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

0 comments on commit 99c2249

Please sign in to comment.