2

我的 Google Maps 活动使用Google Maps Geocoding API V3搜索地址。
我看到有时,即使我按顺序重复搜索多次,当我连接到数据连接时,谷歌地图的响应也是 OVER_QUERY_LIMIT 。
它也发生在设备上安装应用程序后的第一次搜索中。
当我连接到 wifi 时,它工作得很好。
这是我的代码。
搜索方法:

public static JSONObject getAddressInfo(String sAddress) {
    HttpGet httpGet = new HttpGet("http://maps.google.com/maps/api/geocode/json?address=" + sAddress + "&region=it&language=it&sensor=false");
    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());
        Log.d("Google Geocoding Response", stringBuilder.toString());
    } catch (JSONException e) {
        e.printStackTrace();
    }
    return jsonObject;
}

响应管理:

    JSONObject jsonObject = Utils.getAddressInfo(Utils.strToUrl(inputName.getText().toString().trim()));
    try {
        String sStatus = jsonObject.getString("status");
        if (sStatus.equals("OK")) {
            lng = ((JSONArray)jsonObject.get("results")).getJSONObject(0).getJSONObject("geometry").getJSONObject("location").getDouble("lng");
            lat = ((JSONArray)jsonObject.get("results")).getJSONObject(0).getJSONObject("geometry").getJSONObject("location").getDouble("lat");                     
            bdlData.putDouble("lat", lat);
            bdlData.putDouble("lng", lng);
            bdlData.putFloat("dZoom", dZoom);
            message.setData(bdlData);
            mapHandler.sendMessage(message);
        } else if (sStatus.equals("ZERO_RESULTS")) {
            runMsgOnUIThread("Nessun risultato trovato.");
        } else if (sStatus.equals("OVER_QUERY_LIMIT")) {
            runMsgOnUIThread("Impossibile effettuare la ricerca al momento. Riprovare fra qualche secondo.");
        } else if (sStatus.equals("REQUEST_DENIED")) {
            runMsgOnUIThread("Richiesta non accettata. Riprovare.");
        } else if (sStatus.equals("INVALID_REQUEST")) {
            runMsgOnUIThread("Indirizzo non esistente.");
        } else if (sStatus.equals("UNKNOWN_ERROR")) {
            runMsgOnUIThread("Impossibile effettuare la ricerca al momento. Riprovare.");                   
        }
    } catch (JSONException e) {
        e.printStackTrace();
    }
4

2 回答 2

6

您的问题很可能出在您的移动运营商身上。绝大多数运营商使用一种称为 NAT 过载的技术,并将相同的外部 IP 分配给多个设备。如果您的运营商将大量设备分配给单个 IP,并且其中许多设备使用类似的服务,那么每个人都会遇到问题,因为所有请求似乎都来自同一个 IP。

您对 10*200ms 请求的成功似乎与服务器端的 OVER_QUERY_LIMIT 标志的到期有关,正如本(Google Maps API Web Services 的使用限制)文档中所暗示的那样,这表明在收到此状态后,您应该在 2 秒后重新查询,以查看您是否超出了日常使用量或发送了太多请求。

这不会通过 wifi 发生,因为您的手机有自己的或多或少独特的 IP。

于 2013-06-14T13:17:58.620 回答
0

我找到了一种经常(并非总是)解决问题的解决方法:如果我得到 OVER_QUERY_LIMIT,则每 200 毫秒重新查询一次 Google,最多 10 次。

于 2013-06-12T07:24:07.533 回答