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.

My app needs to show Google Maps directions from A to B, but I don't want to put the Google Maps into my application - instead, I want to launch it using an Intent. Is this possible? If yes, how?

share|improve this question

3 Answers

up vote 123 down vote accepted

You could use something like this:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
    Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
startActivity(intent);

You can use an actual street address instead of latitude and longitude. However this will give the user a dialog to choose between opening it via browser or Google Maps.

If you are in the US, you could use an unofficial way (Since it isn't official, I don't recommend using it). This will fire up Google Maps in navigation mode. Haven't played with it since where I live it isn't available.

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
    Uri.parse("google.navigation:q=an+address+city"));
share|improve this answer
1  
Is there anyway to remove the dialog??? and let it just be the map app – molleman Jun 4 '11 at 17:19
2  
Not that I am aware of. However, there won't be any dialog if the user has already chosen the default app to open this type of intents to be the map app. – Jan S. Jun 11 '11 at 23:40
48  
If you want to get rid of the dialog you can give the intent a hint as to which package you want to use. Before the startActivity() add this: intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity"); – fiXedd Jun 27 '11 at 17:45
and how to forze to show it on the navigator and not on the googlemaps application? – AndroidUser99 Nov 18 '11 at 11:48
14  
Forcing the user into a specific activity when they may have other apps they prefer seems contrary to the bolt it together Android spirit to me. I would be tempted to let the intent filters take care of things here. – superluminary Jun 10 '12 at 9:20
show 2 more comments

This is a little off-topic because you asked for "directions", but you can also use the Geo URI scheme described in the Android Documentation:

http://developer.android.com/guide/appendix/g-app-intents.html

The problem using "geo:latitude,longitude" is that Google Maps only centers at your point, without any pin or label.

That's quite confusing, especially if you need to point to a precise place or/and ask for directions.

If you use the query parameter "geo:lat,lon?q=name" in order to label your geopoint, it uses the query for search and dismiss the lat/lon parameters.

I found a way to center the map with lat/lon and display a pin with a custom label, very nice to display and useful when asking for directions or any other action:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("geo:0,0?q=37.423156,-122.084917 (" + name + ")");
startActivity(intent);
share|improve this answer
2  
Nice, the default geo:0,0 just moves the map there. This solution ["geo:0,0?q=37.423156,-122.084917 (" + name + ")"] allows you to put in your own marker name. Thanks. – gnac Aug 31 '11 at 5:36
Above also works with Uri.parse("geo:0,0?q=custom+address (" + name + ")");. Exactly what I want wanted. Thanks. – anargund Oct 31 '11 at 4:07
3  
Works great - fyi doesn't appear to work in conjunction with the "z" query parameter (zoom level) – scolestock Jan 6 '12 at 21:33
Works great thank you. When user clicks the pin on the map, it opens page which consists of Maps, Direction and Call. I wish there is a way to make call button available as well. – tasomaniac Aug 26 '12 at 20:52
1  
Why don't you use geo:37.423156,-122.084917?q=37.423156,-122.084917 ...? – rekire Jan 31 at 8:38
show 2 more comments

if you know point A, point B (and whatever features or tracks in between) you can use a KML file along with your intent.

String kmlWebAddress = "http://www.afischer-online.de/sos/AFTrack/tracks/e1/01.24.Soltau2Wietzendorf.kml";
String uri = String.format(Locale.ENGLISH, "geo:0,0?q=%s",kmlWebAddress);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);

for more info, see this SO answer

NOTE: this example uses a sample file that (as of mar13) is still online. if it has gone offline, find a kml file online and change your url

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.