0
如何檢查我的當前位置是否在我之前繪製的路線上,如果不是,則重繪路線。如何檢查我的當前位置是否在我繪製的路線上,如果不是,則重繪路線
那麼如何,我認爲:我們有這樣的事情:
ArrayList<LatLng> listGeopoints = new ArrayList<LatLng>()
(響應來自
String url = "http://maps.googleapis.com/maps/api/directions/xml?"
+ "origin=" + start.latitude + "," + start.longitude
+ "&destination=" + end.latitude + "," + end.longitude
+ "&sensor=false&units=metric&mode=driving";
)
,我必須做出的功能是這樣的
for(LatLng point : listGeopoint){
if (checkIfPointNearly(currentPoint, point)) return true;
else return false
}
以前的註冊點是什麼意思?我以前的位置? –
不是 - 您註冊的曲目的分數。 – piotrpo
謝謝,我會嘗試) –