google maps Uncaught ReferenceError:未定义ZERO_RESULTS

时间:2011-05-11 17:36:35

标签: google-maps google-maps-api-3

我不明白为什么我会收到此错误,因为ZERO_RESULTS是由google maps api定义的常量

1 个答案:

答案 0 :(得分:1)

这是一个枚举,而不仅仅是文本。

geocoder.geocode( { 'address': address}, function(results, status) {
    if (status == google.maps.GeocoderStatus.ZERO_RESULTS) {
        //Nadda
    }
});