gpt4 book ai didi

android - 如何通过 latlng 获得两点之间的距离?

转载 作者:IT老高 更新时间:2023-10-28 23:36:56 26 4
gpt4 key购买 nike

我想通过 latlng 获取从 A 到 B 的距离。当我使用以下代码运行我的应用程序时,它返回错误的结果。Fx我试了A(31.172740,115.0081630),然后B(30.6055980,114.3603140),结果是3111km左右,但是正确的距离是134km左右。我的代码是:

    class btnListener implements OnClickListener{

public void onClick(View v) {
lat_a=lat_A.getText().toString();
lng_a=lng_A.getText().toString();
lat_b=lat_B.getText().toString();
lng_b=lng_B.getText().toString();
double a1,n1,a2,n2;
a1=30.6055980;
a2=Double.parseDouble(lat_b);
n2=Double.parseDouble(lng_b);
double R=6371;
double D=Math.acos(Math.sin(a1)*Math.sin(a2)+Math.cos(a1)*Math.cos(a2)*Math.cos(n2-n1));
Toast.makeText(getApplication(), "the distance is"+String.valueOf(D*R)+"km from A to B", Toast.LENGTH_SHORT).show();
}

}

最佳答案

android 本身提供了一个 api 来获取两点之间的距离。使用:

Location.distanceBetween(
startLatitude,
startLongitude,
endLatitude,
endLongitude,
results);

返回以米为单位的距离。

关于android - 如何通过 latlng 获得两点之间的距离?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8832071/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com