2

この質問について多くのトピックがあることは知っていますが、私の問題はより具体的です。Google Directions http API を呼び出して、2 つの場所の間の経路を取得します。応答する JSON には、ポイント A から B への移動方法に関するすべての情報が含まれています。しかし、たとえば、移動中に実際の場所とステップの次の終了場所との間の距離を自分で計算するにはどうすればよいでしょうか? 「エアライン」ではなく「ロードライン」が必要です。

私がしたことは、LocationManager を使用して実際の場所の緯度経度を取得することです。これと終了位置の緯度経度を使用して、Location.distanceBetween メソッドを呼び出します。しかし、それは不正確な距離を返します。不正確とは、distance between メソッドの結果が、方向 API からの距離と異なることを意味します。長い道のりも短い道のりも。

解決策の 1 つは、Directions API を複数回呼び出すことです。ただし、道路に沿った実際の距離を取得するには、もっと適切な方法が必要です。私が欲しいものを手に入れるためのツールはありますか?

分かりやすいように編集しました

4

1 に答える 1

1

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;
}

実際には、このコードを使用Polylineして地図上に方向を描画しましたが、距離関数も同様に機能するはずです。

于 2013-03-10T19:34:55.440 に答える