var sgworld = null; var lMenu; //logo var logo = { 'url': url + 'Img/logo.png', 'width': '1920', 'height': '99', 'left': '0', 'top': '0', 'horizontal': 'center' }; //头部按钮 var tMenu = { "panels": [{ "children": [{ "title": "基础工具", "callBack": "chaXun", "icon": url + "Img/a2.png", "param": "1", "height": 77, "width": 120 }], "left": 5, "title": "a1", "top": 35, "bottom": 0, "right": -1, "visible": "true", "direction": "wh" }, { "children": [{ "title": "基础工具", "callBack": "chaXun", "icon": url + "Img/a1.png", "param": "2", "height": 77, "width": 120 }], "left": 5, "title": "a2", "top": 35, "bottom": 0, "right": -1, "visible": "false", "direction": "wh" }, { "children": [{ "title": "高级工具", "callBack": "setMenu", "icon": url + "Img/a4.png", "param": "1", "height": 77, "width": 120 }], "left": 115, "title": "a3", "top": 35, "bottom": 0, "right": -1, "visible": "true", "direction": "wh" }, { "children": [{ "title": "高级工具", "callBack": "setMenu", "icon": url + "Img/a3.png", "param": "2", "height": 77, "width": 120 }], "left": 115, "title": "a4", "top": 35, "bottom": 0, "right": -1, "visible": "false", "direction": "wh" }, { "children": [{ "title": "统计分析", "callBack": "fenX", "icon": url + "Img/a6.png", "param": "1", "height": 77, "width": 120 }], "left": 225, "title": "a5", "top": 35, "bottom": 0, "right": -1, "visible": "true", "direction": "wh" }, { "children": [{ "title": "统计分析", "callBack": "fenX", "icon": url + "Img/a5.png", "param": "2", "height": 77, "width": 120 }], "left": 225, "title": "a6", "top": 35, "bottom": 0, "right": -1, "visible": "false", "direction": "wh" } ] }; //初始化控件以及加载内容 var TE = ""; $(function () { TE = document.getElementById("TBAX"); if (TE == "" || TE == null || TE == undefined) { TE = document.createElement("object"); TE.id = "TBAX"; TE.classid = "clsid:B23DDF84-B652-4E34-9E57-77B8731199FE"; //TE.classid = "CLSID:3a4f9196-65a8-11d5-85c1-0001023952c1"; TE.style.width = "100%"; TE.style.height = "100%"; TE.style.marginLeft = "-1920px"; } document.body.appendChild(TE); sgworld = TBAX.createSgworld(); //sgworld = TE.CreateInstance("TerraExplorerX.SGWorld71"); //左侧菜单 lMenu = { top: "160", menu: RootCatlog }; setTimeout(function () { sgworld.Open(FlyPath); TBAX.setLogo(JSON.stringify(logo), "2"); TBAX.setOpacity(0.8); TBAX.setLMenu(JSON.stringify(lMenu)); TBAX.setFullBtn2(JSON.stringify(tMenu)); sgworld.AttachEvent("OnLoadFinished", OnloadFished); }, 2000); }); //加载完成事件 function OnloadFished() { $("#bg").css("display", "none"); TE.style.marginLeft = "0px"; sgworld.AttachEvent("OnLButtonDblClk", OnLButtonUp); } function close() { TBAX.ActiveXDispose(); }