隐藏 div 上的 Google Map API V3(jquery-ui 选项卡)
我知道这个问题很古老,但我似乎找不到明确的说明。
问题的要点是,当 Google 地图加载到隐藏的(显示:无)div(例如 jQuery 选项卡等)上时,它不会完全加载(部分显示)。API
V3 不再接受 checkResize() , 'left:-1000px' 不是一个优雅的解决方案。
我听说延迟构建地图,并在单击选项卡时重新加载地图,但请帮助我了解确切的代码。
I know this problem is ancient, but I can't seem to find a clear instruction for it.
The gist of the problem is the Google Map wouldn't load completely (partly shown) when it's loaded on a hidden (display:none) divs, e.g. jQuery tabs, etc.
API V3 wouldn't accept checkResize() any more, the 'left:-1000px' is not an elegant solution.
I've heard delaying constructing the map, and reload the map when click the tabs, but please help me on the exact codes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么你说“left:-1000px'不是一个优雅的解决方案”?它在 API v2 中非常适合我,并且也应该适用于 API v3(未经测试,如果它不起作用,请告诉我)。
重绘,即 API v2
checkResize()
在 API v3 中以这种方式完成:这是我的 jquery-ui 选项卡 CSS 示例(灵感来自
http://jqueryui.com/demos/tabs/):
Why do you say "left:-1000px' is not an elegant solution"? It works for me greatly in API v2 and should work also for API v3 (not tested, let me know if it doesn't work).
Redraw, i.e. API v2
checkResize()
is accomplished this way in API v3:Here is an example of my CSS for jquery-ui tabs (inspired by
http://jqueryui.com/demos/tabs/):
如果您不能依赖选项卡显示事件,您可以在选项卡链接单击事件上添加该事件,而不是在页面就绪时调用
initialize()
。In case you can't depend on a Tab Show event you can add the event on Tab Link click event instead of calling
initialize()
on page ready.