Created
September 26, 2018 15:13
-
-
Save mitchtabian/a77ca41385203f56eca3b4afa2f2d42b to your computer and use it in GitHub Desktop.
Revisions
-
mitchtabian created this gist
Sep 26, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ 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){ }