我有以下功能,可以对地址进行地理编码,结果位中的任何警报都不起作用!我在我的页面上的另一个 Geocoder 实例上有完全相同的代码,它工作正常!有什么线索吗?
function geocoderegion(addressX) {
alert("GeocodeRegion running for " + addressX);
geocoder2.geocode({address: addressX, partialmatch: true }, function geocodeResult(results, status){
if (status =='OK' && results.length >0) {
alert("Geocode ran " + status);
//return results[0].geometry.location;
} else {
alert("Geocode was not successful for the following reason:" + status)
}
});
}