如何更改 google-maps-v3 上信息窗口的宽度和高度
我想使用 v3 设置信息窗口的宽度和高度,
谢谢
i want to set the width and height of the infowindow using v3
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想使用 v3 设置信息窗口的宽度和高度,
谢谢
i want to set the width and height of the infowindow using v3
thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
尝试使用 InfoWindow.setContent() 方法。
Try adding a div with desired width, height and content inside the InfoWindow using InfoWindow.setContent() method.
信息窗口将自动调整其高度以适合所有内容,但如果您想要与标准不同的宽度,则必须通过信息窗口选项进行设置。
我建议通过 setContent 将一个具有设定高度的 div 放入信息窗口中。
The info window will adjust its height automatically to fit all the contents, but if you want a width that is different from the standard you have to set it through the InfoWindow options.
I would recommend putting a div with a set height into the infowindow via the setContent.