6

我的谷歌地图代码中创建信息窗口的部分是这样的:

                    google.maps.event.addListener(marker, 'click', function () {
                    infowindow.setContent(this.html);
                    infowindow.open(map, this);
                    });

我需要将信息窗口的最大宽度设置为 250 像素,但我无法让它工作。是否存在以下语法错误:

                    google.maps.event.addListener(marker, 'click', function () {
                    infowindow.setContent(this.html);
                    infowindow.maxWidth(250);
                    infowindow.open(map, this);
                    });
4

1 回答 1

9

在职的:

                    google.maps.event.addListener(marker, 'click', function () {
                    // where I have added .html to the marker object.
                    infowindow.setContent(this.html);
                    infowindow.setOptions({maxWidth:250}); 
                    infowindow.open(map, this);
                    });
于 2013-05-22T10:56:59.467 回答