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?
|
|
|
You could use something like this:
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.
|
|||||||||||||||||||
|
|
if you know point A, point B (and whatever features or tracks in between) you can use a KML file along with your 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 |
|||
|
|
|
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:
|
|||||||||||||||||
|