如何调整Google Maps V3中信息窗口的位置
如何调整 Google 地图 v3 中的信息窗口,使其显示完整?
How to fit the infowindow in Google Maps v3 so that it will appear full?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何调整 Google 地图 v3 中的信息窗口,使其显示完整?
How to fit the infowindow in Google Maps v3 so that it will appear full?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
InfoWindow 有一个最小高度,这是不可避免的。它将扩展以包含高于最小值的任何内容。您可以通过强制内容达到特定高度来覆盖扩展行为。
额外信息:http://code.google.com/apis/ maps/documentation/javascript/reference.html#InfoWindowOptions
一个选项是不使用 InfoWindow 并滚动您自己的单击时打开的“气泡”。
InfoWindow have a minimum height, this is pretty much unavoidable. It will expand to contain any content taller then the mimimum. You can override the expand behavior by forcing your content to be a specific height.
Extra info: http://code.google.com/apis/maps/documentation/javascript/reference.html#InfoWindowOptions
An option is to not use InfoWindow and roll your own "bubble" that is opened on click.