Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mitchtabian
Created September 26, 2018 15:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mitchtabian/a77ca41385203f56eca3b4afa2f2d42b to your computer and use it in GitHub Desktop.
Save mitchtabian/a77ca41385203f56eca3b4afa2f2d42b to your computer and use it in GitHub Desktop.
Launch Google maps app and get directions
String latitude = String.valueOf(49.08);
String longitude = String.valueOf(122.45);
Uri gmmIntentUri = Uri.parse("google.navigation:q=" + latitude + "," + longitude);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
try{
if (mapIntent.resolveActivity(getActivity().getPackageManager()) != null) {
startActivity(mapIntent);
}
}catch (NullPointerException e){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment