0

我有一个谷歌地图页面,它在除 Chrome 之外的所有浏览器中都能正常工作。当 Chrome 加载它时,它认为添加选项卡正在尝试添加浏览器选项卡而不是信息框中的选项卡。有任何想法吗?提前致谢。这是有问题的代码片段。

// to open the info bubbles
             google.maps.event.addListener(marker, 'click', function () {
                 InfoBubble.open(map, marker);
                 InfoBubble.removeTab(4);
                 InfoBubble.removeTab(3);
                 InfoBubble.removeTab(2);
                 InfoBubble.removeTab(1);
                 InfoBubble.removeTab(0);
                 if (category == "KML") {
                     window.open("" + url);
                 }
                 //if (!category == "KML") {
                 InfoBubble.addTab('Details', contentString_detail);
                 //}
                 if (!notes_tab == "") {
                     InfoBubble.addTab('Notes', contentString_notes);
                 }
                 if (!map_tab == "") {
                     switch (category) {
                         case "Camping": InfoBubble.addTab('Campsite Map', contentString_maps);
                             break;
                         case "Hike": InfoBubble.addTab('Trail Map', contentString_maps);
                             break;
                     }
                 }
                 if (!hiking_detail_tab == "") {
                     InfoBubble.addTab('Trail Notes', contentString_hiking_detail);
                 }
                 if (!camping_detail_tab == "") {
                     InfoBubble.addTab('Campsite Notes', contentString_camping_detail);
                 }
             });
         }
4

0 回答 0