將 Google 地圖路線整合到 Android 應用程式中
許多行動應用程式需要整合 Google 地圖才能提供使用者詳細的路線。然而,在應用程式中嵌入 Google 地圖可能會很費力。幸運的是,Android 提供了一個方便的替代方案:使用 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);
此程式碼將在導航中開啟Google 地圖模式,允許使用者取得從A 點(以座標20.344,34.34 表示)到 B點(以座標表示)的方向20.5666,45.345).
或者,要從使用者目前位置啟動導航,可以刪除 Saddr 參數。也可以使用實際的街道地址而不是座標,但可能會提示使用者選擇要開啟的應用程式的對話框。
要透過 Google 地圖直接導航,建議使用以下程式碼:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("google.navigation:q=an+address+city"));
此外,Google 於 2017 年為 Google Maps URL 引入了通用的跨平台 API。該 API 還允許使用 Intents 進行直接導航,從而提供了更高效和標準化的方式將 Google 地圖方向整合到 Android 應用程式中的方法。
以上是如何使用 Intent 將 Google 地圖路線整合到我的 Android 應用程式中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!