如何从android中的纬度和经度获取3位国家代码[重复]
Posted
技术标签:
【中文标题】如何从android中的纬度和经度获取3位国家代码[重复]【英文标题】:How to Get 3 digit country code from latitude and longitude in android [duplicate] 【发布时间】:2017-06-01 12:23:01 【问题描述】:谁能告诉我如何从经纬度获取 3 位国家代码(例如 India-IND)
这是我获取 2 位数国家/地区代码的代码
latitude = gps.getLatitude();
longitude = gps.getLongitude();
geocoder = new Geocoder(getActivity(), Locale.getDefault());
addresses = geocoder.getFromLocation(latitude, longitude, 1);
Country = addresses.get(0).getCountryName();
String Country_code1=addresses.get(0).getCountryCode();
【问题讨论】:
country.io/iso3.json String Country_code1=addresses.get(0).getCountryCode();您将在 Country_code1 中提供什么? 【参考方案1】:有一个简单的方法:
address.getLocale().getISO3Country();
这里有更多关于Locale 和ISO3 codes 以及关于国家/地区codes 的更多信息。
【讨论】:
以上是关于如何从android中的纬度和经度获取3位国家代码[重复]的主要内容,如果未能解决你的问题,请参考以下文章