Reputation: 11
Question on HERE. Com. There is a function to which I give two points: the FROM point and the point TO. Does the function give me all the points on the route?
I use API: https://route.ls.hereapi.com/routing/7.2/calculateroute.json?app_id=&app_code=&waypoint0=geo!52.5,13.4&waypoint1=geo!52.5,13.45&mode=fastest;car;traffic:disabled
But this API give me only instruction points. I want take all route point on this way. How can I do this?
Upvotes: 0
Views: 212
Reputation: 1887
In order to receive all route points, you should include representation=display
parameter.
See HERE routing API documentation for more details.
Upvotes: 1