Heim >Java >javaLernprogramm >Wie starte ich Google Maps Directions mithilfe von Intents in Android?

Wie starte ich Google Maps Directions mithilfe von Intents in Android?

Mary-Kate Olsen
Mary-Kate OlsenOriginal
2024-12-14 07:23:29429Durchsuche

How to Launch Google Maps Directions Using Intents in Android?

Google Maps Directions with Intents für Android starten

Frage:

Wie kann ich starten? Google Maps-Wegbeschreibungen zwischen zwei Standorten mithilfe eines Intents in einem Android App?

Antwort:

Ja, es ist möglich, einen Intent zum Starten von Google Maps-Wegbeschreibungen zu verwenden. So können Sie es tun:

  • Aus Breiten- und Längengraden:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
startActivity(intent);
  • Aus dem aktuellen Standort:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://maps.google.com/maps?daddr=20.5666,45.345"));
startActivity(intent);
  • Direkte Navigation (erfordert die Installation der Google Maps-App):
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("google.navigation:q=an+address+city"));

Update (Mai 2017):

Google hat eine neue API für universelle, plattformübergreifende Google Maps-URLs. Sie können Intents auch mit der neuen API verwenden:

  • Google Maps-URL analysieren:
Uri gmmIntentUri = Uri.parse("https://www.google.com/maps/dir/?api=1&origin=Sydney&destination=Brisbane&travelmode=driving");
  • Erstellen Absicht:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, gmmIntentUri);
startActivity(intent);

Das obige ist der detaillierte Inhalt vonWie starte ich Google Maps Directions mithilfe von Intents in Android?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn