0
我現在在我的應用程序中使用Google mapV2。我無法找到兩個位置(地理位置)之間的距離,並且可以計算從源到達目的地(通過步行或駕車)的持續時間..是否有任何Google API可用?如果不是這樣,請引導我進入好教程?Google MapV2距離計算
我現在在我的應用程序中使用Google mapV2。我無法找到兩個位置(地理位置)之間的距離,並且可以計算從源到達目的地(通過步行或駕車)的持續時間..是否有任何Google API可用?如果不是這樣,請引導我進入好教程?Google MapV2距離計算
通過使用Locations
和Distance To
方法可以計算出距離。 如
Location locationA = new Location("Point A");
locationA.setLatitude(POINT A LATITUDE);
locationA.setLongitude(POINT A LONGITUDE);
Location locationB = new Location("Point B");
locationB.setLatitude(POINT B LATITUDE);
locationB.setLongitude(POINT B LONGITUDE);
double distance = locationA.distanceTo(locationB);
的可能重複: http://stackoverflow.com/questions/14394366/find-distance-between-two-points-on-map-using-google-map-api-v2 – progrrammer
谷歌地圖V2工作正常嗎?如果是,然後PLZ分享你的源代碼。 – Hemant