GoogleMaps地理编码器错误:ZERO_RESULTS

时间:2012-12-19 16:19:22

标签: google-maps google-geocoder street-address

这是我的JS代码,用于获取地址的lon和lat。

在99%的时间它运作良好....但有时我得到ZERO_RESULTS状态......

if (geocoder) {
    geocoder.geocode({'address': address, 'language':'it'}, function (results, status) {
        if (status == google.maps.GeocoderStatus.OK) {
            $('#frm_company_lat').val(results[0].geometry.location.lat());
            $('#frm_company_lon').val(results[0].geometry.location.lng());

            can_submit = true;
            $('#company_frm').trigger("submit");
        } else{
            top.console.debug(address);
            top.console.debug(status);
            alert("Cannot get lon in lat: "+ address);
            //can_submit = true;
            //$('#company_frm').trigger("submit");
        }
    });
}

地址没什么特别的,如果我直接在谷歌地图中找到它,它会显示......

如果我尝试直接提取JSON(通过直接网址),我会得到相同的结果!

http://maps.googleapis.com/maps/api/geocode/xml?address=Via%20Selo%2010a,%2047122%20Forli,%20Italia&sensor=false

请提出建议

1 个答案:

答案 0 :(得分:0)

在地址查询中删除邮政编号/邮编有时会更好...

所以在特定情况下,如果我删除47122就行了。