繁体   English   中英

查找邮政编码 | 使用谷歌地图地理编码反向的邮政编码

[英]Find Postal Code | Zipcode using Google map geocoding reverse

查找邮政编码 | 邮政编码使用谷歌地图地理编码反向。

我想要这个功能。 请检查截图。

https://snag.gy/IAaZmr.jpg

我只想使用 google api geocoding 获取 ewspective google 位置的密码

function callZipAPI(addSearchZip){    
var geocoder = new google.maps.Geocoder();
var zipCode = null;

geocoder.geocode({ 'address': addSearchZip }, function (results, status) {
    if (status == google.maps.GeocoderStatus.OK) {

        //var latitude = results[0].geometry.location.lat();
        //var longitude = results[0].geometry.location.lng();

        var addressComponent = results[0].address_components;            
        for (var x = 0 ; x < addressComponent.length; x++) {
            var chk = addressComponent[x];
            if (chk.types[0] == 'postal_code') {
                zipCode = chk.long_name;
            }
        }
        if (zipCode) {
            alert(zipCode);
        }
        else {
            alert('No result found!!');
        }
    } else {            
        alert('Enter proper address!!');
    }
});}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM