open google maps cycling navigation

Solutions on MaxInterview for open google maps cycling navigation by the best coders in the world

showing results for - "open google maps cycling navigation"
Jan
02 Mar 2017
1var gmmIntentUri = Uri.parse("google.navigation:q="+destintationLatitude+","+destintationLongitude + "&mode=b");
2var mapIntent = Intent(Intent.ACTION_VIEW, gmmIntentUri);
3mapIntent.setPackage("com.google.android.apps.maps");
4startActivity(mapIntent);
5