1
Surpriseplus
2022-10-14 6d536dea3cec157947947aa075bebde4305f29b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>河北省矿山三维信息管理系统</title>
    <link href="css/bootstrap.min.css" rel="stylesheet" />
    <script src="js/jquery.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
    <script src="js/config.js"></script>
    <script src="js/detect.js"></script>
    <script src="js/common.js"></script>
    <script src="js/tools.js"></script>
    <script type="text/javascript">
        var idleMode = null;
        var sgworld = null;
        var sgworldEx = null;
        function LoadFly() {
            try {
                if (isIE()) {
                    sg = sgworld = CreateSGObj();
                    sg.AttachEvent("OnFrame", g1OnFrame);
                    sg.AttachEvent("OnLButtonDown", g1OnLButtonDown);
                    sg.Open(flyurl);
 
 
                }
                else {
                    alert("请安装三维浏览插件并允许插件运行使用!");
                }
            }
            catch (e) {
                alert(e);
            }
        }
 
        function g1OnFrame() {
            if (idleMode == 1) {
                var pos = sgworld.Navigate.GetPosition(3);
                sgworldEx.Navigate.SetPosition(pos);
            }
        }
        function g1OnLButtonDown(Flags, X, Y, pbHandled) {
            idleMode = 1;
        }
 
        function g2OnFrame() {
            if (idleMode == 2) {
                var pos = sgworldEx.Navigate.GetPosition(3);
                sgworld.Navigate.SetPosition(pos);
            }
        }
        function g2OnLButtonDown(Flags, X, Y, pbHandled) {
            idleMode = 2;
        }
 
        window.setTimeout("LoadFly()", 1000);
        window.setTimeout("LoadFlyEx()", 2000);
 
        function LoadFlyEx() {
            sgworldEx = TerraExplorer3DWindowEx.CreateInstance("TerraExplorerX.SGWorld701");
            sgworldEx.AttachEvent("OnLoadFinished", OnLoadFinishedEx);
            sgworldEx.AttachEvent("OnFrame", g2OnFrame);
            sgworldEx.AttachEvent("OnLButtonDown", g2OnLButtonDown);
            sgworldEx.Open(flyurl2);
        }
 
        function OnLoadFinishedEx()
        {
            //var rightEarthTitle = window.document.getElementById("rightEarthTitle");
            //rightEarthTitle.innerText = "2019年";
 
            var rightEarthPanel = window.document.getElementById("rightEarthPanel");
            rightEarthPanel.style.display = "none";
        }
 
        var bshow = 0;
        function ShowPopup() {
            try {
                var sg = CreateSGObj();
                var ppCation = "辅助分析";
                pp = sg.Creator.CreatePopupMessage(ppCation, abspath() + "/tools.html", sg.Window.Rect.width - 235, 5, 230, 230, -1);
                var pp = sg.Window.GetPopupByCaption(ppCation);
                if (bshow == 0) {
                    sg.Window.ShowPopup(pp);
                    bshow = 1;
                }
                else {
                    sg.Window.RemovePopup(pp);
                    bshow = 0;
                }
            }
            catch (e) {
                alert(e);
            }
        }
        
        function ShowProjectTree() {
            try {
                var projecttree = window.document.getElementById("TerraExplorerInformationWindow");
                var tdwindow = window.document.getElementById("TerraExplorer3DWindow");
                if (projecttree.style.display == 'none') {
                    projecttree.style.display = '';
                    tdwindow.style.width = "80%";
                }
                else {
                    projecttree.style.display = 'none';
                    tdwindow.style.width = "100%";
                }
            }
            catch (e) {
                alert(e);
            }
        }
        
        function ShowInitStatue() {
            try {
                locationBrowse("全貌", 0, "");
            }
            catch (e) {
                alert(e);
            }
        }
        
        function ShowMultiple() {
            var leftEarthPanel = window.document.getElementById("leftEarthPanel");
            var rightEarthPanel = window.document.getElementById("rightEarthPanel");
            var leftEarthTitle = window.document.getElementById("leftEarthTitle");
            var rightEarthTitle = window.document.getElementById("rightEarthTitle");
 
            var TerraExplorer3DWindow = window.document.getElementById("TerraExplorer3DWindow");
            var TerraExplorer3DWindowEx = window.document.getElementById("TerraExplorer3DWindowEx");
 
            if (leftEarthPanel.style.width == "100%") {
                leftEarthPanel.style.width = "50%";
                rightEarthPanel.style.display = "";
 
                leftEarthTitle.style.display = "";
                rightEarthTitle.style.display = "";
 
                TerraExplorer3DWindow.style.height = TerraExplorer3DWindowEx.style.height = "95%";
            }
            else {
                leftEarthPanel.style.width = "100%";
                rightEarthPanel.style.display = "none";
 
                leftEarthTitle.style.display = "none";
                rightEarthTitle.style.display = "none";
 
                TerraExplorer3DWindow.style.height = TerraExplorer3DWindowEx.style.height = "100%";
            }
        }
 
        function Show2D() {
            var leftEarthPanel = window.document.getElementById("leftEarthPanel");
            var rightEarthPanel = window.document.getElementById("rightEarthPanel");
            if (leftEarthPanel.style.width == "100%") {
                leftEarthPanel.style.width = "50%";
                rightEarthPanel.style.display = "";
                sgworldEx.Command.Execute(1054,0);
            }
            else {
                leftEarthPanel.style.width = "100%";
                rightEarthPanel.style.display = "none";
                sgworldEx.Command.Execute(1052, 0);
            }
 
        }
 
        function showKSResult() {
            var ksResultList = window.document.getElementById("ksResultList");
            ksResultList.style.display = "";
        }
 
        var bshowProfile = 0;
        function ShowProfile() {
            try {
                var sg = CreateSGObj();
                var ppCation = "地形剖面";
                pp = sg.Creator.CreatePopupMessage(ppCation, abspath() + "/TerrainProfile/TerrainProfile.html", 0, 0, 300, 200, -1);
                var pp = sg.Window.GetPopupByCaption(ppCation);
                if (bshowProfile == 0) {
                    sg.Window.ShowPopup(pp);
                    bshowProfile = 1;
                }
                else {
                    sg.Window.RemovePopup(pp);
                    bshowProfile = 0;
                }
            }
            catch (e) {
                alert(e);
            }
        }
 
        var bshowVolume = 0;
        function ShowVolume() {
            try {
                var sg = CreateSGObj();
                var ppCation = "资源量分析";
                pp = sg.Creator.CreatePopupMessage(ppCation, abspath() + "/Volume/Volume.html", 0, 0, 300, 250, -1);
                var pp = sg.Window.GetPopupByCaption(ppCation);
                if (bshowVolume == 0) {
                    sg.Window.ShowPopup(pp);
                    bshowVolume = 1;
                }
                else {
                    sg.Window.RemovePopup(pp);
                    bshowVolume = 0;
                }
            }
            catch (e) {
                alert(e);
            }
        }
 
        var bshow = 0;
        function showCross() {
            try {
                var sg = sgworld;
                var ppCation = "模型剖切展示";
                pp = sg.Creator.CreatePopupMessage(ppCation, alltoolurl + "/CrossSection/CrossSection.html", sg.Window.Rect.width - 235, 230 + 5, 230, 230, -1);
                var pp = sg.Window.GetPopupByCaption(ppCation);
                if (bshow == 0) {
                    sg.Window.ShowPopup(pp);
                    bshow = 1;
                }
                else {
                    sg.Window.RemovePopup(pp);
                    bshow = 0;
                }
            }
            catch (e) {
                alert(e);
            }
        }
 
        //var bshowProfile = 0;
        //function ShowProfile() {
        //    try {
        //        var sg = CreateSGObj();
        //        var ppCation = "地形剖面";
        //        pp = sg.Creator.CreatePopupMessage(ppCation, abspath() + "/TerrainProfile/TerrainProfile.html", 0, 0, 300, 200, -1);
        //        var pp = sg.Window.GetPopupByCaption(ppCation);
        //        if (bshowProfile == 0) {
        //            sg.Window.ShowPopup(pp);
        //            bshowProfile = 1;
        //        }
        //        else {
        //            sg.Window.RemovePopup(pp);
        //            bshowProfile = 0;
        //        }
        //    }
        //    catch (e) {
        //        alert(e);
        //    }
        //}
 
        var bshowIMGCompare = 0;
        function showIMGCompare()
        {
            try {
                var sg = CreateSGObj();
                var ppCation = "影像对比";
                pp = sg.Creator.CreatePopupMessage(ppCation, abspath() + "/ImageComparison/ImageComparisonPopup.html", 0, 0, 480, 120, -1);
                var pp = sg.Window.GetPopupByCaption(ppCation);
                if (bshowIMGCompare == 0) {
                    sg.Window.ShowPopup(pp);
                    bshowIMGCompare = 1;
                }
                else {
                    sg.Window.RemovePopup(pp);
                    bshowIMGCompare = 0;
                }
            }
            catch (e) {
                alert(e);
            }
        }
 
    function qlcTrainS(selectIdName) {
 
        var arrValue=document.getElementById(selectIdName).options[document.getElementById(selectIdName).selectedIndex].value;
 
        //alert(arrValue);
        
 
    }
 
    function showksDetails()
    {
        var obj = window.document.getElementById("ksDetails");
        obj.style.display = '';
    }
 
    function showJCPanel()
    {
        var topMenuBtn1 = window.document.getElementById("topMenuBtn1");
        topMenuBtn1.style.background = "rgba(25,83,189,1)";
        var topMenuBtn2 = window.document.getElementById("topMenuBtn2");
        topMenuBtn2.style.background = "rgba(44, 44, 44, 1)";
 
        var ksDetails = window.document.getElementById("ksDetails");
        ksDetails.style.display = '';
        var yyDetails = window.document.getElementById("yyDetails");
        yyDetails.style.display = 'none';
 
        var pid = sgworld.ProjectTree.FindItem("河北保定易县矿山\\语义");
        sgworld.ProjectTree.SetVisibility(pid, false);
    }
 
    function showYYPanel() {
        var topMenuBtn1 = window.document.getElementById("topMenuBtn1");
        topMenuBtn1.style.background = "rgba(44, 44, 44, 1)";
        var topMenuBtn2 = window.document.getElementById("topMenuBtn2");
        topMenuBtn2.style.background = "rgba(25,83,189,1)";
 
        var ksDetails = window.document.getElementById("ksDetails");
        ksDetails.style.display = 'none';
        var yyDetails = window.document.getElementById("yyDetails");
        yyDetails.style.display = '';
 
        var pid = sgworld.ProjectTree.FindItem("河北保定易县矿山\\语义");
        sgworld.ProjectTree.SetVisibility(pid, true);
    }
    function flytoks1()
    {
        var pid = sgworld.ProjectTree.FindItem("腾辉");
        if (pid != 0) {
            var obj = sgworld.ProjectTree.GetObject(pid);
            sgworld.Navigate.FlyTo(obj, 0);
        }
    }
    function flytoks2() {
        var pid = sgworld.ProjectTree.FindItem("得文");
        if (pid != 0) {
            var obj = sgworld.ProjectTree.GetObject(pid);
            sgworld.Navigate.FlyTo(obj, 0);
        }
    }
 
    function showYYLayers1()
    {
        var pid = sgworld.ProjectTree.FindItem("河北保定易县矿山\\语义位置\\得文生活区");
        if (pid != 0) {
            var obj = sgworld.ProjectTree.GetObject(pid);
            sgworld.Navigate.FlyTo(obj, 0);
        }
        
    }
    function showYYLayers2() {
        var pid = sgworld.ProjectTree.FindItem("河北保定易县矿山\\语义位置\\得文生产区");
        if (pid != 0) {
            var obj = sgworld.ProjectTree.GetObject(pid);
            sgworld.Navigate.FlyTo(obj, 0);
        }
    }
    function showYYLayers3() {
        var pid = sgworld.ProjectTree.FindItem("河北保定易县矿山\\语义位置\\得文白云岩Q2S1"); 
        if (pid != 0) {
            var obj = sgworld.ProjectTree.GetObject(pid);
            sgworld.Navigate.FlyTo(obj, 0);
        }        
    }
    function showYYLayers4() {
        var pid = sgworld.ProjectTree.FindItem("河北保定易县矿山\\语义位置\\得文矿体");
        if (pid != 0) {
            var obj = sgworld.ProjectTree.GetObject(pid);
            sgworld.Navigate.FlyTo(obj, 0);
        }
    }
 
    function showHistoryIMGLayer(selectIdName)
    {
        var arrValue = document.getElementById(selectIdName).options[document.getElementById(selectIdName).selectedIndex].value;
        var pid = sgworldEx.ProjectTree.FindItem("河北保定易县矿山\\历史影像");
        sgworldEx.ProjectTree.SetVisibility(pid, false);
        var pid2 = sgworldEx.ProjectTree.FindItem("河北保定易县矿山\\模型");
        sgworldEx.ProjectTree.SetVisibility(pid2, false);
        var subpid = sgworldEx.ProjectTree.FindItem("河北保定易县矿山\\历史影像\\" + arrValue);
        if (pid != 0) {
            sgworldEx.ProjectTree.SetVisibility(subpid, true);
        }
    }
    </script>
    <style>
        .has-feedback {
            position: relative;
        }
 
        .navbar-form .has-feedback .form-control-feedback {
            top: 0;
        }
 
        .form-control-feedback {
            position: absolute;
            top: 0;
            right: 0;
            z-index: 2;
            display: block;
            width: 34px;
            height: 34px;
            line-height: 34px;
            text-align: center;
            pointer-events: none;
        }
        .toolsbtn {
            display:inline-block;
            color:white;
            margin:5px;
            vertical-align:top;
            cursor:pointer;
            text-align:center;
        }
        .toolsbtnimg {
            width:32px;
            height:32px;
        }
 
.carousel {
            width: 100%;
            height: 100%;
        }
 
        img {
            width: 100%;
            height: 100%;
        }
 
        .centerdiv{
    float:left;
    width:50px;
    border-right: 1px solid white;
    padding-bottom:1600px;  /*关键*/
    margin-bottom:-1600px;  /*关键*/
}
    </style>
</head>
<body style="margin: 1%; border: 0px;background:rgba(44,44,44,1);  overflow:hidden;">
    <div id="top" style="background:rgba(25,83,189,1);height:120px;">
        <div style="width:50%;">
            <img src="images/logo.png" style="width:50%;height:50%;" />
        </div>
        <div id="tools" style="position:absolute; left:40%; top:30px;height:120px;width:85%;style="background:rgba(25,83,189,1);">
            <!--工具栏-->
            <div id="querty" class="toolsbtn" onclick="addTextLabel();">
                <div><img src="images/1.png" class="toolsbtnimg" /></div>
                <div>标签</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="addIMGLabel();">
                <div><img src="images/2.png" class="toolsbtnimg" /></div>
                <div>图片</div>
            </div>
            <div class="toolsbtn">|</div>
            <div id="querty" class="toolsbtn" onclick="allclickinformation();">
                <div><img src="images/3.png" class="toolsbtnimg" /></div>
                <div>查询</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="distance3D();">
                <div><img src="images/4.png" class="toolsbtnimg" /></div>
                <div>距离</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="cover3D();">
                <div><img src="images/5.png" class="toolsbtnimg" /></div>
                <div>区域选择</div>
            </div>
            <div class="toolsbtn">|</div>
            <div id="querty" class="toolsbtn" onclick="isohypse();">
                <div><img src="images/6.png" class="toolsbtnimg" /></div>
                <div>等高线图</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="showslope();">
                <div><img src="images/7.png" class="toolsbtnimg" /></div>
                <div>坡度图</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="route();">
                <div><img src="images/8.png" class="toolsbtnimg" /></div>
                <div>最佳路径分析</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="ShowProfile()">
                <div><img src="images/9.png" class="toolsbtnimg" /></div>
                <div>地形剖面分析</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="ShowVolume()">
                <div><img src="images/10.png" class="toolsbtnimg" /></div>
                <div>资源量分析</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="showCross();">
                <div><img src="images/11.png" class="toolsbtnimg" /></div>
                <div>三维截面分析</div>
            </div>
            <div class="toolsbtn">|</div>
            <div id="querty" class="toolsbtn" onclick="showTime();">
                <div><img src="images/12.png" class="toolsbtnimg" /></div>
                <div>时间滑块</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="showSun();">
                <div><img src="images/13.png" class="toolsbtnimg" /></div>
                <div>太阳</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="showShadow();">
                <div><img src="images/14.png" class="toolsbtnimg" /></div>
                <div>阴影</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="showIMGCompare();">
                <div><img src="images/15.png" class="toolsbtnimg" /></div>
                <div>影像对比</div>
            </div>
            <div id="querty" class="toolsbtn" onclick="ShowMultiple();">
                <div><img src="images/16.png" class="toolsbtnimg" /></div>
                <div>分屏对比</div>
            </div>
            <!--<div class="toolsbtn">
                <select name="trains" onchange="qlcTrainS('hn_select_input')" style="margin-bottom: 0px;color:#8E8E8E;height:28px;" class="form-control m-b selectpicker" id="hn_select_input">
                    <option value="2020">2020</option>
                    <option value="2019">2019</option>
                    <option value="2018">2018</option>
                    <option value="2017">2017</option>
                    <option value="2016">2016</option>
                </select>
            </div>
            <div id="querty" class="toolsbtn" onclick="ShowMultiple();">对比</div>
            <div id="querty" class="toolsbtn" onclick="Show2D();">二维</div>-->
        </div>
    </div>
    
    <div id="LeftPanel" class="navbar-inverse" style="position: absolute; top: 120px; width:20%;height:100%; color:white;border:5px;border-color:black;">
        <div id="topMenu" style="width:100%; z-index:99;border:0px;padding:0px;color:white;font-size:10pt;">
            <div id="topMenuBtn1" style="display:inline-block;width:49%; padding:10px 20px 10px 20px;border-bottom:2px;background:rgba(25,83,189,1);cursor:pointer;" onclick="showJCPanel();">基础信息</div>
            <div id="topMenuBtn2" style="display:inline-block;width:49%; padding:10px 20px 10px 20px;border-bottom:2px; cursor:pointer;" onclick="showYYPanel();">语义信息</div>
        </div>
        <div id="ksList" style="height:20%;">
            <div class="form-group has-feedback">
                <label for="pw"></label>
                <span class="glyphicon glyphicon-search form-control-feedback"></span>
                <input type="text" id="pw" class="form-control" placeholder="请输入矿山许可证编号" style="width:73%;margin-left:3%;" />
                <button type="button" class="btn btn-success" style="position:absolute; top:5px; right:3%;" onclick="showKSResult()">确定</button>
            </div>
            <div id="ksResultList" style="display:none;">
                <ul class="list-group">
                    <a class="list-group-item" href="#" onclick="showksDetails(); flytoks1();">腾辉矿业</a>
                    <a class="list-group-item" href="#" onclick="showksDetails(); flytoks2();">德文矿业</a>
                </ul>
            </div>
        </div>
        <div id="ksDetails" style="height:90%;">
            <div id="topMenuBtn3" style="display:inline-block;width:100%; padding:10px 20px 10px 20px;border:5px;background:rgba(25,83,189,1); border-color:black;cursor:pointer;" onclick="">详情信息</div>
            <div style="margin:6%;">
                
                <div style="height:100%;">
                    <iframe id="ksContent" src="ks1.html" style="width:100%; height:510px;border:0px;"></iframe>
                </div>
            </div>
        </div>
        <div id="yyDetails" style="height:80%;display:none;">
            <div id="topMenuBtn3" style="display:inline-block;width:100%; padding:10px 20px 10px 20px;border:5px;background:rgba(25,83,189,1); border-color:black;cursor:pointer;" onclick="">语义信息</div>
            <div style="margin:10px;">
                <div style="margin:10px;display:inline-block;"> 
                    <button type="button" class="btn" style="background:rgba(145,205,255,1);color:black;" onclick="showYYLayers1()">生活区</button>
                </div>
                <div style="margin:10px;display:inline-block;">
                    <button type="button" class="btn" style="background:rgba(211,199,255,1);color:black;" onclick="showYYLayers2()">生产区</button>
                </div>
                <div style="margin:10px;display:inline-block;">
                    <button type="button" class="btn" style="background:rgba(255,174,108,1);color:black;" onclick="showYYLayers3()">白云岩Q2S1</button>
                </div>
                <div style="margin:10px;display:inline-block;">
                    <button type="button" class="btn" style="background:rgba(192,255,223,1);color:black;" onclick="showYYLayers4()">矿体</button>
                </div>
            </div>
 
        </div>       
    </div>
   
    <div style="position: absolute; top: 120px; bottom: 1%; right:1%; left:21%; width: 78%; background-color: black; margin: 0px; border: 0px;">
        <div id="leftEarthPanel" style="width: 100%; height: 100%;z-index:1000000;background:rgba(27,55,109,1); border:1px solid rgba(56,56,56,0.48);border-radius:20px;">
            <div id="leftEarthTitle" style="width:100%; height:5%;color:white; display:none;">
                <div style="display:inline-block;width:5%;"></div>
                <div style="display:inline-block; width:20%; margin:5px; text-align:center; background:rgba(25,83,185,1);border:1px solid rgba(56,56,56,0.48);border-radius:20px;">2020年9月16日</div>
                <div style="display:inline-block;width:30%;"></div>
                <div style="display:inline-block;margin:5px; width:40%; text-align:center; vertical-align:middle; background:rgba(25,83,185,1); border:1px solid rgba(56,56,56,0.48);border-radius:20px;">
                    <div style="display:inline-block;margin:5px;">资源量分析</div>
                    <div style="display:inline-block;margin:5px;">|</div>
                    <div style="display:inline-block;margin:5px;">文件</div>
                    <div style="display:inline-block;margin:5px;">|</div>
                    <div style="display:inline-block;margin:5px;">对比</div>
                </div>
            </div>
            <object id="TerraExplorer3DWindow" classid="CLSID:3a4f9192-65a8-11d5-85c1-0001023952c1" style="top:5%; width: 100%; height:100%; z-index:1000000;"></object>
        </div>
        <div id="rightEarthPanel" style="position:absolute;top:0px;left:50%; width: 50%; height: 100%; z-index:10;background:rgba(27,55,109,1); border:1px solid rgba(56,56,56,0.48);border-radius:20px;display:'';">
            <div id="rightEarthTitle" style="width:100%; height:5%;color:white;z-index:10;display:none;">              
                <div style="display:inline-block;width:5%;"></div>
                <!--<div style="display:inline-block; width:20%; margin:5px;text-align:center; background:rgba(25,83,185,1);border:1px solid rgba(56,56,56,0.48);border-radius:20px;">2020年9月16日</div>class="form-control m-b selectpicker" -->
                <div style="display:inline-block; width:20%; text-align:center; background:rgba(25,83,185,1);border:1px solid rgba(56,56,56,0.48);border-radius:20px;">
                    <select name="trains" onchange="showHistoryIMGLayer('lsyx_select_input')" style="margin-bottom: 0px; width:100%; color:#8E8E8E;" id="lsyx_select_input">
                        <option value="2018">2018</option>
                        <option value="2017">2017</option>
                        <option value="2016">2016</option>
                        <option value="2015">2015</option>
                        <option value="2014">2014</option>
                        <option value="2013">2013</option>
                        <option value="2008">2008</option>
                    </select>
                </div>
                <div style="display:inline-block;width:30%;"></div>
                <div style="display:inline-block; margin:5px; width:40%;text-align:center; vertical-align:middle; background:rgba(25,83,185,1); border:1px solid rgba(56,56,56,0.48);border-radius:20px;">
                    <div style="display:inline-block;margin:5px;">资源量分析</div>
                    <div style="display:inline-block;margin:5px;">|</div>
                    <div style="display:inline-block;margin:5px;">文件</div>
                    <div style="display:inline-block;margin:5px;">|</div>
                    <div style="display:inline-block;margin:5px;">对比</div>
                </div>
            </div>
            <object id="TerraExplorer3DWindowEx" classid="CLSID:3a4f9196-65a8-11d5-85c1-0001023952c1" style="top:5%; width: 100%; height:100%; z-index:10;"></object>
        </div>
    </div>
</body>
</html>