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.

I building an app that contains many addresses. A user can select an address in a listview. This should automatically show a user directions to that address from the users current location.

 String uri = "geo:"+ selectedAddress.getLat+","+getLng();
 StartActivity(new Intent(Intent.ACTION_VIEW,Uri.parse(uri)));

I know all this does is show the location of the specified co-ords.

How would i go about showing the directions to the location from the users current location?

share|improve this question
I don't think you can; if you look at this list, you'll see that the only available intents for Google Maps is how to show a location, what you have done in your code. – Frxstrem Jun 4 '11 at 15:26

2 Answers

How would i go about showing the directions to the location from the users current location?

As @Frxstrem indicated, there is no documented and supported Intent to bring up directions.

share|improve this answer

ask the user for the place and do the following way:

String place="";//user gives the place.
String url = "http://maps.google.com/maps?daddr="+place;
Intent drn = new Intent(android.content.Intent.ACTION_VIEW,  Uri.parse(url));
startActivity(drn);

Google will automatically take the current user location as starting point and give directions

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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