首頁 >Java >java教程 >如何使用 Intent 從 Android 應用程式啟動 Google 地圖路線?

如何使用 Intent 從 Android 應用程式啟動 Google 地圖路線?

Susan Sarandon
Susan Sarandon原創
2024-12-20 19:58:13454瀏覽

How to Launch Google Maps Directions from Your Android App Using Intents?

使用Android Intents 啟動Google 地圖路線

需要在Android 應用程式中顯示從一個位置到另一個位置的Google 地圖路線,而不合併整個位置地圖框架?使用意圖使其可以實現。

如何使用意圖啟動Google 地圖路線:

要使用意圖啟動Google 地圖路線,請按照以下步驟操作:

  1. 使用ACTION_VIEW 操作定義Intent 並設定資料URI。
  2. 使用緯度和經度座標或街道地址作為來源 (saddr) 和目的地 (daddr) 位置。
  3. 呼叫 startActivity(intent) 啟動 Google 地圖。

使用座標的範例:

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);

要從目前位置開始導航,省略 Saddr 參數。

注意:使用街道地址而不是座標將為使用者提供在瀏覽器或 Google 地圖中開啟之間的選擇。

直接啟動Google 地圖導航:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("google.navigation:q=an+address+city"));

Google 地圖意圖2023

2017 年5 月,Google 推出了支援Google 通用地圖的新API。您也可以透過意圖利用此API:

Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("https://www.google.com/maps/dir/?api=1&origin=source_location&destination=destination_location"));

注意:將source_location和destination_location替換為適當的值。

以上是如何使用 Intent 從 Android 應用程式啟動 Google 地圖路線?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn