1

I am using MonoDevelop for Android with Google Maps.

If I have two sets of Longitude/Latitude points, what is the best way to show the directions between these two points on a map?

Is there some sample code I can have a look at? Should I load a webpage that traces this route?

I just would like the easiest way to show directions that can be implemented into a Google Maps application that I am making for Android.

Garry
  • 1,251
  • 9
  • 25
  • 45

1 Answers1

0
  1. You can use Google web API to find Direction. It return a JSON contain results.
  2. Then parsing them using google http java client. It return a list of lat/long points for you
  3. Finally, draw those points into your maps. You can see example
Community
  • 1
  • 1
Fido
  • 595
  • 1
  • 9
  • 29