如何从地理编码中获取区域名称列表

时间:2014-10-01 13:00:54

标签: php android google-maps

我从代码的地理编码获取区域名称是。

 $geocode=file_get_contents('http://maps.googleapis.com/maps/api/geocode/json?latlng='.$latitude.','.$longitude.'&sensor=false');

我可以在这里给出lat和long的列表,而不是一个lat和long,因为我有700点,地理编码需要花费太多时间来计算。

1 个答案:

答案 0 :(得分:0)

我的朋友很容易。首先阅读你网址的回复。 ...它将返回json,然后使用以下代码运行

public static String getAddress(JSONObject result) {
    if (result.has("results")) {
        try {
            JSONArray array = result.getJSONArray("results");
            if (array.length() > 0) {
                JSONObject place = array.getJSONObject(0);
                JSONArray components = place.getJSONArray("address_components");
                for (int i = 0; i < components.length(); i++) {
                    JSONObject component = components.getJSONObject(i);
                    JSONArray types = component.getJSONArray("types");
                    for (int j = 0; j < types.length(); j++) {
                        if (types.getString(j).equals("route")) {
                            return component.getString("long_name");
                        }
                    }
                }
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }
    }

    return null;
}

在我当前的代码中,我正在为特定路由解析它....只是跳过条件并将结果保存在数据结构对象中