My question is pretty simple, I want to remove all the landmarks except my endpoint marker from the map once I call NavigationManager.navigate()
or NavigationManager.simulate()
is that possible to do?
if it is then what do I need to use?
PS- I set setLandmarksVisible()
to false but apparently it only hides 3d landmarks.
If you mean the extruded buildings, you can configure this in SDK 3.x like this:
SDK for Android supports 3D representations of buildings and structures. This feature is called extruded buildings, and you can display them by using setExtrudedBuildingsVisible() method in com.here.android.mpa.mapping.Map. See: https://developer.here.com/documentation/android-premium/3.17/dev_guide/topics/map-extruded-buildings.html
If you mean 2D Carto POIs (as your image above), then you can disable this in SDK 3.x via Map.setCartoMarkersVisible e.g.:
map.setCartoMarkersVisible(IconCategory.ALL, false);