web-dev-qa-db-ja.com

Android GeocodergetFromLocationNameは常にnullを返します

文字列をジオコーディングして座標を取得しようとしていますが、getFromLocationName()を使用しようとすると、nullが返されるため、プログラムが常にクラッシュします。私はこれを何時間も修正しようとしていますが、何も機能していません。これが私のコードです

public class MainActivity extends Activity {

    private GoogleMap mMap;

    List<Address> addresses;
    MarkerOptions miami;
    String myLocation = "Miami,Florida";

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        if (mMap == null) {
            mMap = ((MapFragment) getFragmentManager().findFragmentById(
                    R.id.map)).getMap();
        }

        if (mMap != null) {

            Geocoder geocoder = new Geocoder(this);


            double latitude = 0;
            double longitude = 0;

            while(addresses==null){
            try {
                addresses = geocoder.getFromLocationName(myLocation, 1);

            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            }
            Address address = addresses.get(0);
            if (addresses.size() > 0) {
                latitude = address.getLatitude();
                longitude = address.getLongitude();
            }
            LatLng City = new LatLng(latitude, longitude);

            miami = new MarkerOptions().position(City).title("Miami");

            mMap.addMarker(miami);

            mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(City, 15));

        }
}
12
anishk25

ジオコーダーは常に値を返すとは限りません。 forループでリクエストの送信を3回試みることができます。少なくとも一度は帰れるはずです。そうでない場合は、接続の問題であるか、サーバーが要求に応答しないなどの他の問題である可能性があります。これらのスレッドを試してみてください。

Geocoderは常に値を返すとは限りません および geocoder.getFromLocationNameはnullのみを返します

更新:

Whileループもありましたが、以前は最大10回試していました。インターネットに接続していても、何も返されない場合があります。次に、 this はるかに信頼性の高い方法を使用して、毎回アドレスを取得しました。

public JSONObject getLocationInfo() {

        HttpGet httpGet = new HttpGet("http://maps.google.com/maps/api/geocode/json?latlng="+lat+","+lng+"&sensor=true");
        HttpClient client = new DefaultHttpClient();
        HttpResponse response;
        StringBuilder stringBuilder = new StringBuilder();

        try {
            response = client.execute(httpGet);
            HttpEntity entity = response.getEntity();
            InputStream stream = entity.getContent();
            int b;
            while ((b = stream.read()) != -1) {
                stringBuilder.append((char) b);
            }
        } catch (ClientProtocolException e) {
            } catch (IOException e) {
        }

        JSONObject jsonObject = new JSONObject();
        try {
            jsonObject = new JSONObject(stringBuilder.toString());
        } catch (JSONException e) {
            e.printStackTrace();
        }
        return jsonObject;
    }

私はそれを次のように呼びました:

JSONObject ret = getLocationInfo(); 
JSONObject location;
String location_string;
try {
    location = ret.getJSONArray("results").getJSONObject(0);
    location_string = location.getString("formatted_address");
    Log.d("test", "formattted address:" + location_string);
} catch (JSONException e1) {
    e1.printStackTrace();

}

お役に立てれば。ジオコーダーに頼るのにもうんざりしていました。これは私のために働いた。 URLを緯度と経度の座標に置き換えて、返されたJSONオブジェクトをWebブラウザーで確認した場合。何が起こったのかがわかります。

25
Shobhit Puri