我正在使用MonoDevelop for Android并且两点之间有距离。测量的返回值是多少?
以下是我使用的代码:
Location.DistanceBetween(startLat, startLng, endLat, endLng, distResults);
更重要的是,如果需要,如何将此值转换为米和公里?
由于
修改
我从该功能返回以下值:74 4760445.这是74米吗? 74之后的其他数字是什么?从这个值,我怎么才能得到74?没有其他价值观?
答案 0 :(得分:1)
distanceBetween(double startLatitude, double startLongitude, double endLatitude, double endLongitude, float[] results)
计算两个位置之间的近似距离,以及它们之间最短路径的初始和最终方位。
检查一下 http://developer.android.com/reference/android/location/Location.html