Skip to content

Instantly share code, notes, and snippets.

@here-devblog-gists
Created October 27, 2016 11:07
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/b74627307b6bff88fd9517d4fdd9ed18 to your computer and use it in GitHub Desktop.
Save here-devblog-gists/b74627307b6bff88fd9517d4fdd9ed18 to your computer and use it in GitHub Desktop.
var drawRoute = function(route) {
var routeShape = route.shape;
var strip = new H.geo.Strip();
routeShape.forEach(function(point) {
var parts = point.split(',');
strip.pushLatLngAlt(parts[0], parts[1]);
});
var routeLine = new H.map.Polyline(strip, {
style: { strokeColor: ‘blue’, lineWidth: 3 }
});
map.addObject(routeLine);
// map.setViewBounds(routeLine.getBounds());
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment