2
我正在使用Jquery UI自動完成搜索地址使用Google Maps Geocoder,並選擇一個地址時,它返回地理編碼信息。下面是摘錄:谷歌地圖地理編碼器:返回郵政編碼
$('#address-dropdown').autocomplete({
//Use geocoder to fetch lat+long values from an address input using google maps API
source: function(request, response) {
geocoder.geocode({'address': request.term }, function(results, status) {
response($.map(results, function(item) {
return {
label: item.formatted_address,
value: item.formatted_address,
location: item.geometry.location,
latitude: item.geometry.location.lat(),
longitude: item.geometry.location.lng()
}
}));
})
},
我需要返回使用「POSTAL_CODE」檢查,如果他們生活在允許範圍內的能力。以下是一個輸出示例:http://maps.googleapis.com/maps/api/geocode/json?address=1601+Main+St+Eaton+Rapids+MI+48864&sensor=false
我該如何定位郵政編碼信息?