Android 手機中原本就內建 Google 地圖 App,
在顯示地圖或導航時, 可以好好利用這個超方便的 App,
參考範例, 部分程式碼, 如下 :
程式碼
String vDirectionUrl = "https://maps.google.com/maps?f=d" + "&saddr=" + 來源Latitude + "," + 來源Longitude + "&daddr=" + 目的Latitude + "," + 目的Longitude + "&hl=tw"; // 在 Google 地圖 App 顯示導航 Intent intent = new Intent( Intent.ACTION_VIEW, Uri.parse(vDirectionUrl) ); intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity"); startActivity(intent);