4

私はAndroidアプリを書いていますが、緯度/経度の値を取得して、それに最も近い道路の緯度/経度の値を見つける機能が必要です。http://econym.org.uk/gmap/snap.htmの記事を読んで、これを実装しようとしましたが、JavaScriptではなくGoogle Maps Webサービスを使用する必要がありました(Androidアプリであるため) 。私が次のような要求をするとき

Maps.google.com/maps/api/directions/xml?origin=52.0,0&destination=52.0,0&sensor=true

一番近い道は返ってこない!上記の方法はWebサービスでは機能しないようです。誰かがこの問題を解決する方法について他のアイデアを持っていますか?

4

1 に答える 1

4

あなたの URL は問題なく機能しているようです。

テストに使用した AsyncTask を次に示します。

public class SnapToRoad extends AsyncTask<Void, Void, Void> {

private static final String TAG = SnapToRoad.class.getSimpleName();

@Override
protected Void doInBackground(Void... params) {
    Reader rd = null;
    try {
        URL url = new URL("http://maps.google.com/maps/api/directions/xml?origin=52.0,0&destination=52.0,0&sensor=true");
        HttpURLConnection con = (HttpURLConnection) url.openConnection();
        con.setReadTimeout(10000 /* milliseconds */);
        con.setConnectTimeout(15000 /* milliseconds */);
        con.connect();
        if (con.getResponseCode() == 200) {

            rd = new InputStreamReader(con.getInputStream());
            StringBuffer sb = new StringBuffer();
            final char[] buf = new char[1024];
            int read;
            while ((read = rd.read(buf)) > 0) {
                sb.append(buf, 0, read);
            }
            Log.v(TAG, sb.toString());
        } 
        con.disconnect();
    } catch (Exception e) {
        Log.e("foo", "bar", e);
    } finally {
        if (rd != null) {
            try {
                rd.close();
            } catch (IOException e) {
                Log.e(TAG, "", e);
            }
        }
    }
    return null;
}

いくつかの行を見下ろすと、logcat の出力内に次のように表示されます。

11-07 16:20:42.880: V/SnapToRoad(13920):     <start_location>
11-07 16:20:42.880: V/SnapToRoad(13920):      <lat>51.9999900</lat>
11-07 16:20:42.880: V/SnapToRoad(13920):      <lng>0.0064800</lng>
11-07 16:20:42.880: V/SnapToRoad(13920):     </start_location>

それらはあなたが探している座標です。これが役立つことを願っています。

于 2011-11-07T22:35:15.140 に答える