如何修改我的javascript代码以提醒这个?

时间:2011-01-12 01:09:30

标签: javascript jquery css templates google-maps

http://geodit.com:8000/test

如果您访问我的网站,您会看到我安装了Google Local Search API。 基本上,它通过javascript攻击谷歌并执行搜索。

在有人搜索某个内容并点击其中一个结果后,我该如何提醒该地址? (现在,地图上会弹出一些窗台信息白框。我不想那样。我只想提醒地址)

1 个答案:

答案 0 :(得分:1)

更改

LocalResult.prototype.select = function() {
  unselectMarkers();
  this.selected_ = true;
  this.highlight(true);
  gInfoWindow.setContent(this.html(true));
  gInfoWindow.open(gMap, this.marker());
};

LocalResult.prototype.select = function() {
      unselectMarkers();
      this.selected_ = true;
      this.highlight(true);
      var msg = 'Address\n\t';
      msg += this.result_.addressLines.join('\n\t');
      msg += '\nCity\n\t';
      msg += this.result_.city;
      msg += '\nCountry\n\t';
      msg += this.result_.country;
      alert(msg);
};