gpt4 book ai didi

android - 获取两个位置之间的距离,例如 Google Directions 中的 http 请求

转载 作者:行者123 更新时间:2023-11-29 01:55:38 25 4
gpt4 key购买 nike

我知道关于这个问题有很多话题,但我的问题更具体。我调用 Google Directions http API 来获取两个位置之间的路线。响应的 JSON 包含如何从 A 点到 B 点的所有信息。但是我如何自己计算距离,例如我移动时我的实际位置和步骤的下一个终点位置之间的距离?我需要“公路”而不是“航空公司”。

我所做的是使用 LocationManager 获取我实际位置的纬度和经度。有了这个和结束位置的纬度、经度,我调用了 Location.distanceBetween 方法。但它给出了一个不精确的距离。不精确意味着 distancebetween 方法的结果与方向 API 的距离不同。无论是长途还是短途。

一种解决方案是多次调用 Directions API...但是必须有更好的解决方法来获取沿路的实际距离。有没有工具可以得到我想要的东西?

编辑使其更易于理解

最佳答案

调用 Directions API:

 public Document getDocument(LatLng start, LatLng end, String mode) {
String url = "http://maps.googleapis.com/maps/api/directions/xml?"
+ "origin=" + start.latitude + "," + start.longitude
+ "&destination=" + end.latitude + "," + end.longitude
+ "&sensor=false&units=metric&mode=driving";

try {
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpPost httpPost = new HttpPost(url);
HttpResponse response = httpClient.execute(httpPost, localContext);
InputStream in = response.getEntity().getContent();
DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
Document doc = builder.parse(in);
return doc;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}

之后,您可以运行在文档中收到的所有 json 对象,并检查每对点之间的距离:

  public int getDistanceValue (Document doc) {
NodeList nl1 = doc.getElementsByTagName("distance");
Node node1 = nl1.item(0);
NodeList nl2 = node1.getChildNodes();
Node node2 = nl2.item(getNodeIndex(nl2, "value"));
Log.i("DistanceValue", node2.getTextContent());
return Integer.parseInt(node2.getTextContent());
}

以下是您获得所有积分的方法:

   public ArrayList<LatLng> getDirection (Document doc) {
NodeList nl1, nl2, nl3;
ArrayList<LatLng> listGeopoints = new ArrayList<LatLng>();
nl1 = doc.getElementsByTagName("step");
if (nl1.getLength() > 0) {
for (int i = 0; i < nl1.getLength(); i++) {
Node node1 = nl1.item(i);
nl2 = node1.getChildNodes();

Node locationNode = nl2.item(getNodeIndex(nl2, "start_location"));
nl3 = locationNode.getChildNodes();
Node latNode = nl3.item(getNodeIndex(nl3, "lat"));
double lat = Double.parseDouble(latNode.getTextContent());
Node lngNode = nl3.item(getNodeIndex(nl3, "lng"));
double lng = Double.parseDouble(lngNode.getTextContent());
listGeopoints.add(new LatLng(lat, lng));

locationNode = nl2.item(getNodeIndex(nl2, "polyline"));
nl3 = locationNode.getChildNodes();
latNode = nl3.item(getNodeIndex(nl3, "points"));
ArrayList<LatLng> arr = decodePoly(latNode.getTextContent());
for(int j = 0 ; j < arr.size() ; j++) {
listGeopoints.add(new LatLng(arr.get(j).latitude, arr.get(j).longitude));
}

locationNode = nl2.item(getNodeIndex(nl2, "end_location"));
nl3 = locationNode.getChildNodes();
latNode = nl3.item(getNodeIndex(nl3, "lat"));
lat = Double.parseDouble(latNode.getTextContent());
lngNode = nl3.item(getNodeIndex(nl3, "lng"));
lng = Double.parseDouble(lngNode.getTextContent());
listGeopoints.add(new LatLng(lat, lng));
}
}

return listGeopoints;
}

实际上,我使用这段代码在 map 上绘制了方向的Polyline,但距离函数应该也能正常工作。

关于android - 获取两个位置之间的距离,例如 Google Directions 中的 http 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15325976/

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