在Android 上將Google 地圖路線與Intents 整合
問題: Android 應用程式如何在之間啟動Google 地圖路線沒有將地圖應用程式整合到系統中的兩點應用程式?
答案:
是的,這可以透過使用 Intent 來實現。以下程式碼片段示範了它是如何完成的:
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);
程式碼片段中提供的 URI 以緯度和經度格式指定起點和目的地點(分別為saddr 和daddr 參數)。若要從目前位置啟動導航,只需刪除 Saddr 參數和值即可。
或者,可以使用實際的街道地址而不是座標,儘管這種方法會提示使用者一個對話框,要求他們在在 Google 地圖或瀏覽器中開啟導航。
要使用Google 地圖直接導航,可以使用以下Intent使用:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("google.navigation:q=an+address+city"));
更新(2017 年5 月):
Google 為跨平台Google 地圖URL 引入了新的API,可以更靈活地建立Intent以獲得指示。此 API 還可以使用以下語法與 Intents 整合:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("https://www.google.com/maps/dir/?api=1&origin=20.344,34.34&destination=20.5666,45.345"));
以上是如何使用 Intent 從 Android 應用程式啟動 Google 地圖路線?的詳細內容。更多資訊請關注PHP中文網其他相關文章!