Android地理编码器找不到地址,谷歌地图可以找到

时间:2016-01-01 13:26:35

标签: android google-maps google-geocoder

看这里 https://www.google.com.tr/maps/place/Akbank+Sanat+Beyo%C4%9Flu/@41.0356243,28.9803398,17z/data=!3m1!4b1!4m2!3m1!1s0x14cab7643e33e919:0xad542d45132fe9ce?hl=en

当我点击搜索时它可以找到

Akbank Sanat istanbul

但是当我使用这段代码时,它找不到:

  private LatLng getCoors(String loc, String desc){
    Log.v(TAG, "getCoors ");
    loc = loc +" Istanbul";

    if (Geocoder.isPresent()) {
        Log.v(TAG, "getCoors geocoder present");
        geocoder = new Geocoder(mContext, Locale.getDefault());
       Log.v(TAG, "location: "+loc);

        try {
            From_geocode = geocoder.getFromLocationName(loc, 1);
            Log.v(TAG, "fromgeocode: "+From_geocode);
        } catch (IOException e) {
            e.printStackTrace();
            Log.v(TAG, "catched error - from geocode");//need to do something
        }

        if (!From_geocode.isEmpty()) {
            Log.v(TAG, " getcoors fromgeocod enot not empty  ");
            coors = new LatLng(From_geocode.get(0).getLatitude(), From_geocode.get(0).getLongitude());


            Log.v(TAG, "LATITUTE=====" + coors.latitude + "   LONGITUTE=====" + coors.longitude);
            return coors;
        }//second if end
        else{
            Log.v(TAG, " hata getcoors fromgeocode empty  ");
        }
    }//first if end
    else{
        Log.v(TAG, " hata getcoors geocoder not preset  ");
    }
    return null;
}//getcoors end

当我使用相同的地址时,

else{
            Log.v(TAG, " hata getcoors fromgeocode empty  ");
        }
它来到这里。所以,这意味着它无法获取googlemaps可以获取的地址。

我做错了什么?有没有使用json甚至不连接的简单方法?

1 个答案:

答案 0 :(得分:1)

显然,地理编码器在一次运行中有准确计算位置的问题。尝试重复询问位置5-10次,直到收到回复。

或者,为了更准确地从字符串中获取地址,请尝试实施以下内容:

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();

}

此代码来自Shobhit Puri,原始问题可以找到here