Enabling navigation mode in the skobbler android api

I can’t find a way to make my own application, which currently implements SKmaps, to show the route, show the route and follow the route, like a car navigator.

example: enter image description here

this is my route loading method. hope i didn't miss anything.

@Override public void onAllRoutesCompleted() { SKNavigationSettings navigationSettings = new SKNavigationSettings(); navigationSettings.setNavigationType(SKNavigationSettings.SKNavigationType.REAL); navigationSettings.setNavigationMode(SKNavigationSettings.SKNavigationMode.CAR); navigationSettings.setCcpAsCurrentPosition(true); navigationSettings.setFcdEnabled(true); SKNavigationManager navigationManager = SKNavigationManager.getInstance(); navigationManager.setMapView(mapView); navigationManager.setNavigationListener(MainActivity.this); navigationManager.startNavigation(navigationSettings); } 
+5
source share
1 answer

found it in the demo application code.

 mapView.getMapSettings().setMapDisplayMode(SKMapSettings.SKMapDisplayMode.MODE_3D); 
+3
source

All Articles