Google Map API-按邮政编码搜索

时间:2018-10-19 06:39:42

标签: javascript google-maps geolocation

我正在使用Google Map Javascript API,并且工作正常。

 var geocoder = new google.maps.Geocoder();

geocoder.geocode({ 'address': address }, function (results, status) {
  if (status == 'OK') {
    map.setCenter(results[0].geometry.location);

唯一的问题是我无法仅按邮政编码搜索。例如在澳大利亚,如果我仅按2000(地址= 2000)(悉尼邮政编码)搜索,它不会返回任何结果,但是如果我进入Google地图页面并键入2000,则显示正确的区域。 我想知道是否可以通过邮编进行搜索。

1 个答案:

答案 0 :(得分:1)

您尝试过先限制国家吗?

尝试一下,让我知道:

function codeAddress () {
var lat = '';
var lng = '';
var address = document.getElementById("cp").value;
geocoder.geocode( { 
    'address': address,
    componentRestrictions: {
        country: 'PT'
    }
},

function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
        lat = results[0].geometry.location.lat();
        lng = results[0].geometry.location.lng();
        //Just to keep it stored
        positionArray.push(new google.maps.LatLng(lat,lng));
        //Make the marker
        new google.maps.Marker({
            position:new google.maps.LatLng(lat,lng),
            map:map
        });

    }else {
        alert("Geocode was not successful for the following reason: " + status);
    }
});