Route-Me for Android

I want to load several layers and animate them. iPhone has a Route-Me mapping package. Is there any mapping package for Android like Route-Me ? Did you know that the built-in mapping package for android easily supports external layered layers?

+6
source share
2 answers

Yes, the Google Maps API supports Overlays, but regardless of Route-me or iOS4, you have to do all the heavy lifting yourself in the onDraw () method.

0
source

Android maps do not support this feature. You should explore osmdroid or one of the other open source map versions.

Edit: To provide additional information:

The osmdroid project can be found here .

Here is a stack question with some implementation, but still struggling with some details: a simple OSMDroid example .

Here is another similar stack question with additional granularity.

Here is an example of osmdroid with a custom tile source.

0
source

Source: https://habr.com/ru/post/894078/


All Articles