2012-09-06 146 views
0

我想在Google地圖上繪製路線(步行或駕車),我想給出當前用戶座標和目的地座標以繪製和導航路線,因爲此圖像如何在Google地圖上繪製和導航路線

enter image description here

我用這個代碼

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); 

但我得到了 「沒有路線找到」

非常感謝

回答

1

你不能這樣做的意圖。如果使用JSON請求您應該使用http://maps.googleapis.com/maps/api/directions/output?parameters. JSON請求,則必須使它像這個例子中,只要將你的座標:String url = "http://maps.googleapis.com/maps/api/directions/json?origin="yourlat","yourlong"&destination="secondlat","secondlong"&sensor=false";

這可能有助於:Android draw route on a Mapview with twoo POI-s,這How do I draw a KML file on a MapView in Android?