I'm just writing an App for displaying the route between two coords (lat, long) in google maps view. Displaying an single coord (even with a marker) works fine, but how to draw route between two point with 2 markers?

I must admit that I'm quite new to Android and the maps-API...

link|improve this question

feedback

2 Answers

up vote 17 down vote accepted

this is working example link. check it out. it helps to create the route overlay on the map. here is the complete source code for that.

link|improve this answer
One note, you might be running afoul of the Google Maps api if you use it to obtain driving directions (they removed this capability from the android maps api). – Robby Pond Apr 15 '10 at 12:49
yep. but we can do manipulations with the kml file of maps. in my answer, they are retriving the coordinates points to the route from the google maps kml file. check the RoadProvider.java the are build the url to get the road coordintes from the kml file. – Praveen Apr 15 '10 at 13:02
Thank you, that's excactly the thing I was looking for :) I think this will help for understanding and re-program it by myself. Thanks again :) – poeschlorn Apr 16 '10 at 7:20
feedback

Your route will be a list of points so you have to create a route overlay class. And in the draw method of the overlay class you have to draw a Path between the points.

link|improve this answer
feedback

protected by Community Sep 2 '11 at 20:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.