I saw in another Stack Overflow post you can open the Google maps application from your application by passing two address as parameters in the URL.

String url = "http://maps.google.com/maps?saddr=some+address&daddr=another+Address"
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,  Uri.parse(url));

How can you start the Google maps application from your app and get directions from your current location to an address?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Absolutely, but you'll have to grab your location via GPS coordinates first. Or, just set the position of the second location and let the user tap it and find directions from their current position using Maps itself.

link|improve this answer
So I use the google api to find coordinates then pass the coordinates as a parameter? How is this done? – zzzzzzzzzzzzzzzzzzzzzzzzzzzzzz May 1 '11 at 2:44
I used google to find this instructional guide: firstdroid.com/2010/04/29/… – Haphazard May 1 '11 at 2:47
feedback

Your Answer

 
or
required, but never shown

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