web-dev-qa-db-ja.com

Android:逆ジオコーディング-getFromLocation

長い/遅いに基づいて住所を取得しようとしています。このようなものが動作するはずです?

Geocoder myLocation = Geocoder(Locale.getDefault());
    List myList = myLocation.getFromLocation(latPoint,lngPoint,1);

問題は、私が取得し続けることです:メソッドGeocoder(Locale)は、savemaplocationタイプでは未定義です

どんな援助も役に立ちます。ありがとうございました。


おかげで、コンテキスト、ロケール1を最初に試してみましたが、それは失敗し、他のコンストラクターのいくつかを見ていました(ロケールのみに言及しているものを見ました)。とにかく、

私はまだ取得しているので、うまくいきませんでした:メソッドGeocoder(Context、Locale)は、savemaplocationタイプでは未定義です

私は持っています:import Android.location.Geocoder;

49
Chrispix

次のコードスニペットは私のためにそれをやっています(latとlngはこのビットの上に宣言されたdoubleです):

Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocation(lat, lng, 1);
67
Wilfred Knievel

スレッドとハンドラーを使用して、UIをブロックせずにジオコーダーの回答を取得する完全なサンプルコードを次に示します。

ジオコーダー呼び出し手順、ヘルパークラスに配置可能

public static void getAddressFromLocation(
        final Location location, final Context context, final Handler handler) {
    Thread thread = new Thread() {
        @Override public void run() {
            Geocoder geocoder = new Geocoder(context, Locale.getDefault());   
            String result = null;
            try {
                List<Address> list = geocoder.getFromLocation(
                        location.getLatitude(), location.getLongitude(), 1);
                if (list != null && list.size() > 0) {
                    Address address = list.get(0);
                    // sending back first address line and locality
                    result = address.getAddressLine(0) + ", " + address.getLocality();
                }
            } catch (IOException e) {
                Log.e(TAG, "Impossible to connect to Geocoder", e);
            } finally {
                Message msg = Message.obtain();
                msg.setTarget(handler);
                if (result != null) {
                    msg.what = 1;
                    Bundle bundle = new Bundle();
                    bundle.putString("address", result);
                    msg.setData(bundle);
                } else 
                    msg.what = 0;
                msg.sendToTarget();
            }
        }
    };
    thread.start();
}

UIアクティビティのこのGeocoderプロシージャの呼び出しは次のとおりです。

getAddressFromLocation(mLastKownLocation, this, new GeocoderHandler());

UIに結果を表示するハンドラー:

private class GeocoderHandler extends Handler {
    @Override
    public void handleMessage(Message message) {
        String result;
        switch (message.what) {
        case 1:
            Bundle bundle = message.getData();
            result = bundle.getString("address");
            break;
        default:
            result = null;
        }
        // replace by what you need to do
        myLabel.setText(result);
    }   
}

次の許可を忘れずにManifest.xml

<uses-permission Android:name="Android.permission.INTERNET" />
48
EricLarch

ここでは2つのことが起こっているようです。

1)コンストラクターを呼び出す前にnewキーワードを見逃しました。

2)Geocoderコンストラクターに渡すパラメーターが正しくありません。 Localeが必要なContextを渡します。

2つのGeocoderコンストラクターがあり、どちらもContextを必要とし、1つはLocaleを必要とします:

Geocoder(Context context, Locale locale)
Geocoder(Context context)

ソリューション

有効なコンテキストを渡すようにコードを変更し、newをインクルードすれば、準備完了です。

Geocoder myLocation = new Geocoder(getApplicationContext(), Locale.getDefault());   
List<Address> myList = myLocation.getFromLocation(latPoint, lngPoint, 1);

それでも問題が解決しない場合は、許可の問題である可能性があります。ジオコーディングは暗黙的にインターネットを使用して検索を実行するため、アプリケーションではマニフェストにINTERNET uses-permissionタグが必要です。

マニフェストのmanifestノード内に次のuses-permissionノードを追加します。

<uses-permission Android:name="Android.permission.INTERNET" />
36
Reto Meier

この理由は、存在しないバックエンドサービスです。

Geocoderクラスには、コアAndroidフレームワークに含まれないバックエンドサービスが必要です。プラットフォームにバックエンドサービスがない場合、Geocoderクエリメソッドは空のリストを返します。

8
Ingo

最初に、LocationおよびLocationManagerクラスを使用して緯度と経度を取得します。次に、Get the city、address infoのコードを試してください

double latitude = location.getLatitude();
double longitude = location.getLongitude();
Geocoder gc = new Geocoder(this, Locale.getDefault());
try {
    List<Address> addresses = gc.getFromLocation(lat, lng, 1);
    StringBuilder sb = new StringBuilder();
    if (addresses.size() > 0) {
        Address address = addresses.get(0);
        for (int i = 0; i < address.getMaxAddressLineIndex(); i++)
            sb.append(address.getAddressLine(i)).append("\n");
            sb.append(address.getLocality()).append("\n");
            sb.append(address.getPostalCode()).append("\n");
            sb.append(address.getCountryName());
    }

都市情報は現在sbにあります。 sbを文字列に変換します(sb.toString()を使用)。

4
Antony

まあ、私はまだ困惑しています。それで、ここにもっとコードがあります。

マップを離れる前に、SaveLocation(myMapView,myMapController);を呼び出します。これが、ジオコーディング情報を呼び出すことになります。

ただし、getFromLocationIOExceptionをスローできるため、SaveLocationを呼び出すには次の手順を実行する必要がありました。

try
{
    SaveLocation(myMapView,myMapController);
}
catch (IOException e) 
{
    // TODO Auto-generated catch block
    e.printStackTrace();
}

次に、IOExceptionsをスローすると言ってSaveLocationを変更する必要があります。

 public void SaveLocation(MapView mv, MapController mc) throws IOException{
    //I do this : 
    Geocoder myLocation = new Geocoder(getApplicationContext(), Locale.getDefault());   
    List myList = myLocation.getFromLocation(latPoint, lngPoint, 1);
//...
    }

そして、毎回クラッシュします。

2
Chrispix

これを使って

Geocoder geocoder = new Geocoder(this, Locale.getDefault());
List<Address> addresses = geocoder.getFromLocation(lat, lng, 1);
0
Sojan Ks

Geocoderはバグが多いと聞いたことがあります。最近、Googleのhttpジオコーディングサービスを使用して緯度/経度から場所を検索するサンプルアプリケーションをまとめました。こちらをご覧ください

http://www.smnirven.com/?p=39

0
user186939