隐藏 div 上的 Google Map API V3(jquery-ui 选项卡)

发布于 2024-12-19 03:23:11 字数 217 浏览 3 评论 0原文

我知道这个问题很古老,但我似乎找不到明确的说明。

问题的要点是,当 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

虫児飞 2024-12-26 03:23:11

为什么你说“left:-1000px'不是一个优雅的解决方案”?它在 API v2 中非常适合我,并且也应该适用于 API v3(未经测试,如果它不起作用,请告诉我)。

重绘,即 API v2 checkResize() 在 API v3 中以这种方式完成:

google.maps.event.trigger(map, 'resize');

这是我的 jquery-ui 选项卡 CSS 示例(灵感来自
http://jqueryui.com/demos/tabs/):

.ui-tabs .ui-tabs-hide#my_tabs-1 { /* my_tabs-1 contains google map */
    display: block !important;
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
}

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:

google.maps.event.trigger(map, 'resize');

Here is an example of my CSS for jquery-ui tabs (inspired by
http://jqueryui.com/demos/tabs/):

.ui-tabs .ui-tabs-hide#my_tabs-1 { /* my_tabs-1 contains google map */
    display: block !important;
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
}
笑咖 2024-12-26 03:23:11

如果您不能依赖选项卡显示事件,您可以在选项卡链接单击事件上添加该事件,而不是在页面就绪时调用 initialize()

$('#TabLink').click(function() {
    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.

$('#TabLink').click(function() {
    initialize();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文