2

私は住所をジオコーディングする次の機能を持っていますが、結果ビット内のアラートはどちらも機能しません! 私のページの 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)
    }
  });
}
4

0 に答える 0