“Öffnen Sie Google Maps Cycling Navigation Intent” Code-Antworten

Öffnen Sie Google Maps Cycling Navigation Intent

Uri gmmIntentUri = Uri.parse("google.navigation:q=Taronga+Zoo,+Sydney+Australia");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
Happy Hyena

Öffnen Sie Google Maps Cycling Navigation

var gmmIntentUri = Uri.parse("google.navigation:q="+destintationLatitude+","+destintationLongitude + "&mode=b");
var mapIntent = Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
Happy Hyena

Ähnliche Antworten wie “Öffnen Sie Google Maps Cycling Navigation Intent”

Fragen ähnlich wie “Öffnen Sie Google Maps Cycling Navigation Intent”

Weitere verwandte Antworten zu “Öffnen Sie Google Maps Cycling Navigation Intent” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen