Skip to content

Instantly share code, notes, and snippets.

@here-devblog-gists
Created October 27, 2016 11:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save here-devblog-gists/98a4a51c919944eef9aafd8d74b4980f to your computer and use it in GitHub Desktop.
Save here-devblog-gists/98a4a51c919944eef9aafd8d74b4980f to your computer and use it in GitHub Desktop.
HEREMap.prototype.drawRoute = function(fromCoordinates, toCoordinates) {
var routeOptions = {
mode: 'fastest;car',
representation: 'display',
alternatives: 2,
waypoint0: Utils.locationToWaypointString(fromCoordinates),
waypoint1: Utils.locationToWaypointString(toCoordinates)
};
this.routes = new HERERoute(this.map, this.platform, routeOptions);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment