Google地理编码异步方法

时间:2017-07-09 08:52:37

标签: javascript firebase firebase-realtime-database google-geocoder

我正在尝试编写一种方法,在地理编码功能完成后更新我的Firebase数据库。我在Angular2中编写代码,因此我的Firebase数据库在我的构造函数中定义。我知道问题出在异步函数上,但我不确定如何解决这个问题。这是我的代码:

geocoding(callback){
var geocoder = new google.maps.Geocoder();
  geocoder.geocode({'address': this.loc}, function(results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
      callback([results[0].geometry.location.lat(), results[0].geometry.location.lng()]);
    } else {
      this.lat = 0;
    }
  });  
}

和:

geocode(){
this.geocoding(function(latLng){
  this.db.object('users/' + this.auth.id).update({
    lat: latLng[0],
    lng: latLng[1]
  });
});
}

1 个答案:

答案 0 :(得分:1)

我想出了怎么做。事实证明你需要使用promises,这是工作代码:

geocode(address){
    return new Promise(function(resolve,reject){
      var geocoder = new google.maps.Geocoder();
        geocoder.geocode({'address': address}, function(results, status) {
          if (status == google.maps.GeocoderStatus.OK) {
            resolve(results);
          } else {
            this.lat = 0;
          }
        });
      });
  }

和:

  this.geocode(this.loc).then(results => {
      this.db.object('users/' + this.auth.id).update({
        lat: results[0].geometry.location.lat(),
        lng: results[0].geometry.location.lng()
      });
    });