Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
J2ME/Android/BlackBerry - driving directions, route between two locations

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...

share|improve this question
I am doing a similar kind of app and like to know if using kml or using the api to return a json is better. – android developer Jun 10 '12 at 2:03

marked as duplicate by blahdiblah, Tyler Crompton, brian d foy, IceMAN, ElYusubov Jan 29 at 4:38

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 23 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.

share|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
@praveen i have completely followed your above link for route map but i got null null pointer exception mpointsize .also am getting fatal exception as well here i have posted all my source code stackoverflow.com/questions/11928933/… please anyone help me out of this error am getting fatal and null pointer exception at drawpath() .and send me rectified code thanks in advance. – KAREEM MAHAMMED Aug 13 '12 at 6:09

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.

share|improve this answer

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.