作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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()
}
}));
})
},
我需要能够返回用户“邮政编码”以检查他们是否居住在允许的区域内。以下是输出示例:http://maps.googleapis.com/maps/api/geocode/json?address=1601+Main+St+Eaton+Rapids+MI+48864&sensor=false
如何定位 postal_code 信息?
最佳答案
看我的例子:http://jsfiddle.net/nEKMK/
o
是您的对象。
if (o.results[0].address_components) {
for (var i in o.results[0].address_components) {
if (typeof(o.results[0].address_components[i]) === "object" && o.results[0].address_components[i].types[0] == "postal_code") {
var result = o.results[0].address_components[i].long_name;
}
}
}
if (!result) {
alert("Error, there is no postal code");
} else {
alert(result);
}
关于jquery - 谷歌地图地理编码器 : Return postal_code,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8380511/
leaflet:一个开源并且对移动端友好的交互式地图 JavaScript 库 中文文档: https://leafletjs.cn/reference.html 官网(英文): ht
我是一名优秀的程序员,十分优秀!