如何使用Geocoder API或其他方式将城市或州名称转换为javascript或angularjs中的邮政编码?从用户输入我想转换它。
答案 0 :(得分:0)
Google有一个灵活的API。使用GoogleAPI从城市名称获取邮政编码,查看此Stack Overflow主题: Easiest way to get Zip Code from City Name
答案 1 :(得分:0)
以下是工厂示例:
feederliteModule.factory('maps', ['$q', function ($q) {
var geocoder = new google.maps.Geocoder();
return {
geocode: function (address) {
var deferred = $q.defer();
geocoder.geocode({
'address': address
}, function (results, status) {
deferred.resolve(results);
// Should also reject if AJAX errors.
});
return deferred.promise;
}
};
}]);
输入address
。
输出应该是json视图,您可以在其中找到邮政编码:
...
{
"long_name": "168751",
"short_name": "168751",
"types": [
"postal_code"
]
}
...
现在你可以从控制器中调用它,如:
maps.geocode(address)
答案 2 :(得分:0)
当然,邮政编码不一定与地点有关,而是与送货路线有关。 USPS控制邮政编码并根据需要重新安排邮政编码,以提高邮件的发送效率。许多人已经开始期望邮政编码准确地代表某个城市中的某个城市或地区,但这并不是一成不变的。在美国的42,000个5位邮政编码中,每月约有4%的邮政编码发生变化,因此无论您何时获得城市/州/邮编数据,请确保USPS每月更新一次。
除了googlemaps之外,还有许多商业服务可以满足您的需求。快速谷歌搜索“邮政编码api”将成功。
答案 3 :(得分:0)
谢谢大家。我解决了它..... :)这是代码:
function getCity(options){
var geocoder = new google.maps.Geocoder(),
request;
if( options.latitude ) {
request= { 'latLng': new google.maps.LatLng( options.latitude, options.longitude ) };
} else {
request= { 'address': options.address };
};
geocoder.geocode( request, function( results, status ) {
if ( status == google.maps.GeocoderStatus.OK ) {
console.log( results );
geocoder.geocode( request, function( results, status ) {
if ( status == google.maps.GeocoderStatus.OK ) {
console.log( results );
var latitude = results[0].geometry.location.jb;
var longitude = results[0].geometry.location.kb;
var latlng = new google.maps.LatLng(latitude, longitude)
alert(latlng);
geocoder.geocode({'latLng': latlng}, function(results, status) {
//no result, check addresses
for( var resultIndex = 0; resultIndex < results.length; resultIndex++ ) {
var addresses = results[resultIndex].address_components;
for( var addressIndex = 0; addressIndex < addresses.length; addressIndex++ ) {
var types = addresses[addressIndex].types;
for( var typeIndex = 0; typeIndex < types.length; typeIndex++ ) {
if( types[typeIndex] == 'postal_code' ) {
alert(addresses[addressIndex].long_name) ;
return;
};
};
};
};
});
} else {
console.log( 'error: ' + status );
// complete();
};
});
};