Nazar Kacharaba
Nazar Kacharaba
Hi @binod-techindustan Did you try using `RoadView` class to zoom in or out during navigation? E.g. instead of this: `m_map.setZoomLevel(m_map.getZoomLevel() - 0.5, Map.Animation.BOW);` call this: `NavigationManager.getInstance().getRoadView().zoomOut();`
@binod-techindustan did you try this approach?
Could you tell what exactly did not work for you? There is another more hacky way to achieve what you need, try this snippet: ``` final Handler handler = new...
@binod-techindustan In `NavigationManager.MapUpdateMode.ROADVIEW` mode you should use `NavigationManager.getInstance().getRoadView().zoomOut()` or `NavigationManager.getInstance().getRoadView().zoomIn()` methods.
HI @maheshsystimanx Use `Map.removeMapObject()` API: https://developer.here.com/documentation/android-premium/3.15/api_reference_java/com/here/android/mpa/mapping/Map.html#removeMapObject-com.here.android.mpa.mapping.MapObject-
Hi @victorgutsu What version of the SDK do you use? Could you also provide `error.getStackTrace()`?
You should provide full code(like interaction between fragments) so we can better understand problem. That might happen if `android.location.LocationManager` does not provide new location for a long time. Try using...
See API reference https://www.developer.here.com/documentation/android-premium/3.15/api_reference_java/com/here/android/mpa/common/LocationDataSourceGoogleServices.html
@samvgorode how often do you see this behaviour? Do you have steps to reproduce?
@samvgorode could you create code sample and share it with us so we can reproduce and fix it?