Skip to content

Instantly share code, notes, and snippets.

@KhaledAlharthi
Created January 23, 2020 17:11
Show Gist options
  • Save KhaledAlharthi/5d694291e9390440e17620025a3c678d to your computer and use it in GitHub Desktop.
Save KhaledAlharthi/5d694291e9390440e17620025a3c678d to your computer and use it in GitHub Desktop.
private void openMaps(long lat, long lon){
Uri gmmIntentUri = Uri.parse(String.format(Locale.US, "google.navigation:q=%d,%d", lat, lon));
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment