如果您访问我的网站,您会看到我安装了Google Local Search API。 基本上,它通过javascript攻击谷歌并执行搜索。
在有人搜索某个内容并点击其中一个结果后,我该如何提醒该地址? (现在,地图上会弹出一些窗台信息白框。我不想那样。我只想提醒地址)
答案 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);
};