选项卡内容(谷歌地图)初始化问题

发布于 2024-11-17 20:03:32 字数 1128 浏览 1 评论 0原文

我想创建多个动态选项卡,每个选项卡中都有不同的谷歌地图。而且地图不应在每次单击选项卡时初始化...我的编码在下面...实际上我的问题是每次单击选项卡时都会初始化地图。 ..如何解决这个问题...

//动态创建选项卡的函数

 function addTab(link,name) {
    $("#content").append("<div id='" + $(link).attr("value") +         "_content'style='width:100%;height:100%'></div>");
    var mid = $(link).attr("value")+"_content";

    tab1map(mid);

    $("#" + $(link).attr("value") + "_content").show();
}

//function for click event of Tabs

$('#tabs a.tab').live('click', function() {

    $("#content div").hide();

    $("#" + contentname).show();   // Here "contentname" is the id of the above Div tag when creating Tab
    tab1map(contentname);            //Here the Map function called again 
     // Here We should not call this map function again....the Map will Display with existing content in the $("#" + contentname).show(); itself..but it is not displayed....
 }             

// Map Function  
function tab1map(mid) {
         var map = new google.maps.Map(document.getElementById(mid), myOptions);
}

我也尝试过 google.maps.event.trigger(map, 'resize');在选项卡的单击事件中..但这也不起作用。

I want to create Multiple dynamic Tabs with different google maps in each tabs.Also the the map should not initialize every time Tab clicks...My codings are below... Actually my problem is the Map initialized every time i click on Tabs...How to clear this issue...

//Function to create Tab dynamically

 function addTab(link,name) {
    $("#content").append("<div id='" + $(link).attr("value") +         "_content'style='width:100%;height:100%'></div>");
    var mid = $(link).attr("value")+"_content";

    tab1map(mid);

    $("#" + $(link).attr("value") + "_content").show();
}

//function for click event of Tabs

$('#tabs a.tab').live('click', function() {

    $("#content div").hide();

    $("#" + contentname).show();   // Here "contentname" is the id of the above Div tag when creating Tab
    tab1map(contentname);            //Here the Map function called again 
     // Here We should not call this map function again....the Map will Display with existing content in the $("#" + contentname).show(); itself..but it is not displayed....
 }             

// Map Function  
function tab1map(mid) {
         var map = new google.maps.Map(document.getElementById(mid), myOptions);
}

Also I have tried google.maps.event.trigger(map, 'resize'); in click event of Tabs..But this also not working.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文