有没有办法从位置或纬度或长度获取当前用户位置的邮政编码。 如果是这样的话?
答案 0 :(得分:7)
使用Android Geocoder API!
getFromLocation(double,double,int)就是你所需要的。
答案 1 :(得分:5)
是的,你可以......所有你需要做的就是提取
http://maps.google.com/maps/geo?ll=的纬度,经度强>
http://maps.google.com/maps/geo?ll=10.345561,123.896932
或尝试尝试这个解决方案。我可以给你一个想法。
你可以拥有一个城市吗?有了这个json数据,如果你有一个这种格式的zipcode的数据库(在maxmind.com上)
CountryCode |城市|邮编强>
<小时/> PH |宿务| 6000
现在查询您的数据库,该数据库与google返回的国家/地区代码相关。
的更新强> 的
Geocoding API v2已于2013年9月9日被拒绝。
以下是API服务的新网址
http://maps.googleapis.com/maps/api/geocode/json?latlng=your_latitude,your_longitude
http://maps.googleapis.com/maps/api/geocode/json?latlng=10.32,123.90&sensor=true
答案 2 :(得分:4)
基于地理编码器的实施:
private String getZipCodeFromLocation(Location location) {
Address addr = getAddressFromLocation(location);
return addr.getPostalCode() == null ? "" : addr.getPostalCode();
}
private Address getAddressFromLocation(Location location) {
Geocoder geocoder = new Geocoder(this);
Address address = new Address(Locale.getDefault());
try {
List<Address> addr = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 1);
if (addr.size() > 0) {
address = addr.get(0);
}
} catch (IOException e) {
e.printStackTrace();
}
return address;
}
您还可以从地址获取其他信息,例如城市名称。