使用Android Intents 啟動Google 地圖路線
需要在Android 應用程式中顯示從一個位置到另一個位置的Google 地圖路線,而不合併整個位置地圖框架?使用意圖使其可以實現。
如何使用意圖啟動Google 地圖路線:
要使用意圖啟動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中文網其他相關文章!