6

I am working in an android application and I have two Geo points. I want the user to redirect to the google map android application from my application to show the directions in the map. How can I pass the two geopoints to google map android application to show the direction in the google map application.

Arun PS
  • 4,610
  • 6
  • 41
  • 56
  • 3
    This has been already answered =) http://stackoverflow.com/questions/6205827/how-to-open-standard-google-map-application-from-my-application – SeoBits Sep 23 '14 at 05:29
  • Thanks for the response, but the given link shows only a location in the google map. I want to show a direction. – Arun PS Sep 23 '14 at 05:36

1 Answers1

12

Here's an example showing directions in the Google Maps app using an intent.

From the linked answer:

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);
Community
  • 1
  • 1
CodeMonkey
  • 1,426
  • 1
  • 14
  • 32