Android Drive API

While I was browsing this blog , I got confused about using the Directions API for Android. Is it possible to integrate the Directions API on a map? To make this clearer, I’m working on an application that will receive user input for things like source and destinations ... accepting this data, I would like to display a corresponding map that has both walking and movement directions indicated. Is there just a JSON parser (or XML) to support this my desire along with a canvas drawn ... or do I need to create my own API to do this?

+8
android google-maps google-maps-android-api-2 google-direction
source share
1 answer

Yes, you can map api directives to a map. No need to write your own API. You can achieve this very easily. With Google android api V2 there is no need to draw a canvas. Adding things to it is very simple.

Please read here for Google Maps https://developers.google.com/maps/documentation/android/start

and for directions

https://developers.google.com/maps/documentation/directions/

Do you have a specific problem during the process, please ask about it.

Thanks,

+8
source share

All Articles