我正在使用谷歌地图API进行Android项目,该项目获得2个不同的位置,并在路线的中途添加标记。
我发现这可以通过Javascript和Node.js完成,但我想完全在Google Maps API中完成。
如何获得2点之间的距离并在路线中途添加标记?
提前致谢! :d
这是找到距离的代码:
public double CalculationByDistance(GeoPoint StartP, GeoPoint EndP) {
int Radius=6371;//radius of earth in Km
double lat1 = StartP.getLatitudeE6()/1E6;
double lat2 = EndP.getLatitudeE6()/1E6;
double lon1 = StartP.getLongitudeE6()/1E6;
double lon2 = EndP.getLongitudeE6()/1E6;
double dLat = Math.toRadians(lat2-lat1);
double dLon = Math.toRadians(lon2-lon1);
double a = Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) *
Math.sin(dLon/2) * Math.sin(dLon/2);
double c = 2 * Math.asin(Math.sqrt(a));
double valueResult= Radius*c;
double km=valueResult/1;
DecimalFormat newFormat = new DecimalFormat("####");
kmInDec = Integer.valueOf(newFormat.format(km));
meter=valueResult%1000;
meterInDec= Integer.valueOf(newFormat.format(meter));
Log.i("Radius Value",""+valueResult+" KM "+kmInDec+" Meter "+meterInDec);
return Radius * c;
}
答案 0 :(得分:0)
我使用 http://googlemaps.github.io/android-maps-utils/javadoc/com/google/maps/android/SphericalUtil.html#interpolate(LatLng,LatLng,double)
Google Maps Android工具库中的