这是我的谷歌地图代码,用于创建标记的信息窗口并将其宽度限制为 200 像素。一切正常:
google.maps.event.addListener(marker, 'click', function () {
infowindow.setContent(this.html);
infowindow.setOptions({maxWidth:200});
infowindow.open(map, this);
});
现在我需要向 infow 窗口添加一个类,以便我可以使用 CSS 设置它的样式。从谷歌地图文档看来,boxClass 是我需要的,但以下内容没有添加该类。我有语法错误吗?
google.maps.event.addListener(marker, 'click', function () {
infowindow.setContent(this.html);
infowindow.setOptions({boxClass:'myGoogleClass'});
infowindow.open(map, this);
});