Android Geocoder获得管理区域的简称

时间:2015-04-28 01:37:40

标签: android google-geocoder google-geocoding-api

使用google maps API时,对于管理区域,它会为您提供长名称和短名称,例如。

{
    "long_name": "Victoria",
    "short_name": "VIC",
    "types": [
        "administrative_area_level_1",
        "political"
    ]
}

然而,当使用android的原生地理编码器时,我只获得了长名称(在本例中为“Victoria”)。有没有办法在Android中获得管理区域的简称,缺少整合谷歌地图地理编码API?

2 个答案:

答案 0 :(得分:6)

我要保持简短,我的位置实现有点不同。因为我花了几个小时才做到这一点。

首先,我创建了一个Map List来查找州名,然后将其转换为2字母代码,如下所示:

    Map<String, String> states = new HashMap<>();
    states.put("Alabama","AL");
    states.put("Alaska","AK");
    states.put("Alberta","AB");
    states.put("American Samoa","AS");
    states.put("Arizona","AZ");
    states.put("Arkansas","AR");
    states.put("Armed Forces (AE)","AE");
    states.put("Armed Forces Americas","AA");
    states.put("Armed Forces Pacific","AP");
    states.put("British Columbia","BC");
    states.put("California","CA");
    states.put("Colorado","CO");
    states.put("Connecticut","CT");
    states.put("Delaware","DE");
    states.put("District Of Columbia","DC");
    states.put("Florida","FL");
    states.put("Georgia","GA");
    states.put("Guam","GU");
    states.put("Hawaii","HI");
    states.put("Idaho","ID");
    states.put("Illinois","IL");
    states.put("Indiana","IN");
    states.put("Iowa","IA");
    states.put("Kansas","KS");
    states.put("Kentucky","KY");
    states.put("Louisiana","LA");
    states.put("Maine","ME");
    states.put("Manitoba","MB");
    states.put("Maryland","MD");
    states.put("Massachusetts","MA");
    states.put("Michigan","MI");
    states.put("Minnesota","MN");
    states.put("Mississippi","MS");
    states.put("Missouri","MO");
    states.put("Montana","MT");
    states.put("Nebraska","NE");
    states.put("Nevada","NV");
    states.put("New Brunswick","NB");
    states.put("New Hampshire","NH");
    states.put("New Jersey","NJ");
    states.put("New Mexico","NM");
    states.put("New York","NY");
    states.put("Newfoundland","NF");
    states.put("North Carolina","NC");
    states.put("North Dakota","ND");
    states.put("Northwest Territories","NT");
    states.put("Nova Scotia","NS");
    states.put("Nunavut","NU");
    states.put("Ohio","OH");
    states.put("Oklahoma","OK");
    states.put("Ontario","ON");
    states.put("Oregon","OR");
    states.put("Pennsylvania","PA");
    states.put("Prince Edward Island","PE");
    states.put("Puerto Rico","PR");
    states.put("Quebec","PQ");
    states.put("Rhode Island","RI");
    states.put("Saskatchewan","SK");
    states.put("South Carolina","SC");
    states.put("South Dakota","SD");
    states.put("Tennessee","TN");
    states.put("Texas","TX");
    states.put("Utah","UT");
    states.put("Vermont","VT");
    states.put("Virgin Islands","VI");
    states.put("Virginia","VA");
    states.put("Washington","WA");
    states.put("West Virginia","WV");
    states.put("Wisconsin","WI");
    states.put("Wyoming","WY");
    states.put("Yukon Territory","YT");

然后我在完成所有hocus pocus之后将其附加到Location String结果中以获取类似

的地址
    Address address = addressList.get(0);
    String state = states.get(address.getAdminArea());
    result = address.getLocality() + ", " + state;

我希望你在我做之前得到这个,但我决定把它放在需要它的其他人身上。我修好它的时候碰巧在这个页面上。

注意:地图(不是真正的位置图)列表中有加拿大&#34;州和#34;和其他一些使用缩写的地方。

答案 1 :(得分:2)

经过一番搜索,我找到了一个解决方案

String url = "http://maps.googleapis.com/maps/api/geocode/json?latlng=" + latitude + "," + longitude + "&sensor=true";

RequestQueue mVolleyQueue = Volley.newRequestQueue(this);
    StringRequest stringRequest = new StringRequest(Request.Method.GET, url, new Response.Listener<String>() {
        @Override
        public void onResponse(String response) {
            try {
                Log.i("response ", response);
                JSONObject jsonObject = new JSONObject(response);
                JSONArray arrayResult = jsonObject.getJSONArray("results");

                JSONArray arrComponent = arrayResult.getJSONObject(0).getJSONArray("address_components");
                for (int i = 0; i < arrComponent.length(); i++) {
                    JSONArray arrType = arrComponent.getJSONObject(i).getJSONArray("types");

                    for (int j = 0; j < arrType.length(); j++) {

                        if (arrType.getString(j).equals("administrative_area_level_1")) {
                            longname = arrComponent.getJSONObject(i).getString("long_name");
                            shortname = arrComponent.getJSONObject(i).getString("short_name");
                            Log.i("longname", longname);
                            Log.i("shortname", shortname);
                        }
                    }
                }

            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            error.printStackTrace();
        }
    });
    stringRequest.setShouldCache(false);
    stringRequest.setTag("Volley");
    mVolleyQueue.add(stringRequest);

Happy Codding:)