heremaps / here-android-sdk-examples

Java-based projects using the HERE SDK for Android.
Apache License 2.0
145 stars 191 forks source link

Total travel in Highways/Local/Interstate #448

Open abhinavsrivastava1994 opened 3 years ago

abhinavsrivastava1994 commented 3 years ago

I am working on HERE map premium edition 3.18

Is there any way to show above point in HERE map.

NazarKacharaba commented 3 years ago

RouteOptions.setRouteCount can be used to specify number of needed alternatives. You should get several route results in onCalculateRouteFinishedList<RouteResult> results..) callback.

The MapOverlay class can be used to display custom Android View-based content at a fixed location on the map.

Route API has various methods like getTtta*** and get getLength etc to get needed information from the calculated route.