0
A
回答
0
這是一個很好的方式,但更簡單的方法做到這一點是如果你不介意打開一個意圖是
在瀏覽器中,它調用谷歌地圖或其他導航儀打開URL。
像下面,
Uri uri = Uri
.parse("http://maps.google.com/maps?&saddr=" + mCurrentLatitude+","+mCurrentLongitude+"&daddr="+ mLatitude +"," +mLongitude);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
相關問題
- 1. 如何找到從當前位置的路線在谷歌地圖上給定位置的Android
- 2. 在地圖上的當前位置android
- 3. 蘋果地圖從當前位置的路線請求URL
- 4. 如何在地圖視圖中繪製從當前位置到目的位置的路線xamarin iOS
- 5. 如何獲得當前位置在iphone上的地圖位置
- 6. 在Android的地圖上半部分設置當前位置
- 7. Android中當前位置的地圖
- 8. Google定向服務 - 從當前位置到指定目的地的路線
- 9. 谷歌地圖上的當前位置
- 10. 在地圖上顯示當前位置
- 11. 在地圖上獲取當前位置
- 12. 在android中當前位置到另一個位置之間繪製路線?
- 13. 獲得當前位置定位的Android
- 14. 在Android的谷歌地圖上顯示當前位置和其他位置
- 15. 當前位置給定時,獲取最近地點的地圖
- 16. 谷歌從當前位置到已知位置的方向路線
- 17. Arcgis地圖當前位置
- 18. 當前位置與地圖
- 19. Android在地圖上找到的位置
- 20. 路線計算不顯示從當前位置的路線
- 21. 獲取學位從當前位置到目標位置Android
- 22. Android Studio - 當前位置 - Google地圖
- 23. 從當前位置獲取路線到使用谷歌地圖API的座標
- 24. 谷歌地圖的方向意圖與多個位置的路線和起點作爲當前位置,android
- 25. 如何找到從當前位置到給定位置的距離?
- 26. 經緯度從位置A到位置B的路線圖
- 27. 在iPhone上顯示當前位置和所需位置之間的路線MapView
- 28. android:在android地圖上顯示用戶當前位置和當前位置附近的其他用戶
- 29. 從我的位置到一個位置的跟蹤路線谷歌地圖v3
- 30. 使用基於當前位置的MapKit在地圖上繪製路線
閱讀這篇文章http://stackoverflow.com/questions/2023669/j2me-android-blackberry-driving-directions-route-between-two-locations/2023685#2023685 – 2011-05-16 05:06:12