How to display a custom route in SKmap

So, if we have a local travel planner, is it possible to display the route on a Skobbler map?

Is there any method on SKMapSurfaceViewin the Android SDK to transfer the route to display it?

+4
source share
1 answer

Yes - drawTrackElement

You can see an example in the demo project , in the "Tracks" menu.

If you have waypoints / a list of segments, you can draw them on a map using SkPolyline - see the chapter on getting started : http://developer.skobbler.com/getting-started/android#sec009

+6
source

All Articles