用离子改变Geofire火力基地的结构

时间:2018-08-03 12:27:18

标签: javascript angular firebase ionic2 geofire

根据文档,geofire使用以下界面:

export interface GeoFireObj {
  '.priority': string;
  g: string;
  l: number[];
}

我想在界面中添加标题和图片,以便显示一个显示每个位置的标题和图片的信息窗口。

我试图更改它,但是没有用。我的geofire设置函数是:

update(){
  this.geoFire.set({
    "some_keymscou", [45.777337, -73.632393],
    title: "Golf club",
    picture: this.pict
  }

  ).then(function () {
    console.log("Provided keys have been added to GeoFire");
  }, function (error) {
    console.log("Error: " + error);
  });
}

是否可以在不影响实时查询的情况下更改geofire界面

0 个答案:

没有答案