gpt4 book ai didi

google-maps - 谷歌地图中信息窗口的最大宽度?

转载 作者:行者123 更新时间:2023-12-03 23:56:51 25 4
gpt4 key购买 nike

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

                    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);
});

最佳答案

在职的:

                    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);
});

关于google-maps - 谷歌地图中信息窗口的最大宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16689883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com