2016-10-20 37 views
0

首先,對不起我的英語(我是西班牙語)。Maps API Android - Polylines適應街頭

我在製作一個使用Maps API的andorid應用程序。我想用多段線從一點到另一點(如在馬拉松比賽中)劃線,我希望多段線適應街道,我的意思是兩點之間不穿過建築物。 (我想在導航中) 我向你展示了圖像的問題。

它突破了建築
It breaks through the buildings `

PolylineOptions rectOptions = new PolylineOptions() 
     .add(new LatLng(36.71924076644312, -4.421350873626579)) 
     .add(new LatLng(36.71952353679909, -4.420758105434288)) 
     .add(new LatLng(36.71995225115975, -4.421356238044609)) 
     .add(new LatLng(36.72021373552526, -4.4201492439879075)) 
     .add(new LatLng(36.72153026434974, -4.42017070168049)); 

Polyline polyline = mMap.addPolyline(rectOptions); 
     polyline.setGeodesic(true); 
     polyline.setColor(Color.RED); 
+0

您應該添加您的源代碼 – ddb

+0

editted!對不起:) – GCH

回答