Nazar Kacharaba

Results 57 comments of Nazar Kacharaba

Hi @binod-techindustan That is correct. Note, that you must use `TransportMode.TRUCK` for route calculation, and then start navigation with that route, then `RoadElement` will have truck's speed limit. Also, you...

@binod-techindustan Could you provide coordinates for routes?

@binod-techindustan Speed values on Highway no 80 California, USA is fixed for truck in the latest map update. Please use `MapLoader.performMapDataUpdate() ` to switch to the latest map version. @VladChernetsky...

You can find some instructions [here](https://developer.here.com/documentation/android-premium/3.15/dev_guide/topics/maps-offline-maploader.html)

You should perform map data update after you initialized `MapEngine`, before any route calculation or navigation. Check if new update is available using `checkForMapDataUpdate ` method, and then update map...

Hi @medelmaimouni You can use `PositioningManager.addListener(OnPositionChangedListener)` to track position updates. Have a look at [this example](https://github.com/heremaps/here-android-sdk-examples/blob/c7ffcaa49103a6e84df333bd867a1aa2024fcd17/speed-limit-watcher/app/src/main/java/com/here/example/speedlimit/SpeedLimitFragment.java#L77).

First of all I would suggest using [foreground service](https://developer.android.com/guide/components/services#Foreground) for background navigation(see [example](https://github.com/heremaps/here-android-sdk-examples/blob/34cc26be3391a6494ca5e957076faa5e267f5a83/turn-by-turn-navigation/app/src/main/java/com/here/android/example/guidance/MapFragmentView.java#L264)). In that case system will keep your app a bit longer. 1.Resuming navigation HERE SDK does not...

Hi @RnnyLin This HERE SDK and React native both use different version of the same native library, as the result you see this error. Try to update HERE SDK to...

Hi @515orestis In 3.18 we are adding option to choose different positioning matcher algorithm. It should fix this problem.