为什么Android location.distanceTo以百万为单位返回值?

时间:2015-11-19 08:58:02

标签: android android-maps-v2 android-maps

在我的Android应用程序中,我试图计算两个位置之间的距离,但我得到的值是数百万11百万+。两点/位置之间的实际距离仅为1.1km - 1.3Km。为什么会这样?即使 .distanceTo 方法返回的值以米为单位,11M米仍然是一个非常大的值。

这是我的代码:

        Location locationA = new Location("LocationA");
        locationA.setLatitude(lat);
        locationA.setLongitude(lang);

        Location locationB = new Location("LocationB");
        locationB.setLatitude(14.575224);
        locationB.setLongitude(121.042475);

        float distance = locationA.distanceTo(locationB);
        BigDecimal _bdDistance;
        _bdDistance = round(distance,2);
        String _strDistance = _bdDistance.toString();      

Toast.makeText(this, "distance between two locations = "+_strDistance, Toast.LENGTH_SHORT).show();

  public static BigDecimal round(float d, int decimalPlace) {
        BigDecimal bd = new BigDecimal(Float.toString(d));
        bd = bd.setScale(decimalPlace, BigDecimal.ROUND_HALF_UP);
        return bd;
    }

2 个答案:

答案 0 :(得分:4)

你的近似是正确的。它返回以米为单位的距离。

您可以将它除以1000,将其转换为KM;

float distance = locationA.distanceTo(locationB)/1000;

详细了解distanceTo here

答案 1 :(得分:-2)

在我的屏幕快照中,您可以看到,如果我们从双纬度经度(即小数点后6位)获取位置,但实际上Location会保留纬度值直到8位。主要区别在这里。因此,请勿将double用于存储纬度和经度。尝试使用其他方式