-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
1094 lines (1044 loc) · 36.9 KB
/
index.html
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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="">
<head>
<title>电力能源互联网</title>
<!-- Use correct character set. -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="">
<!-- Tell IE to use the latest, best version. -->
<!-- Make the application on mobile take up the full browser screen and disable user scaling. -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<meta name="description" content="Create 3D models using glTF.">
<meta name="cesium-sandcastle-labels" content="Tutorials,Showcases">
<link rel='stylesheet' href='js/Cesium/Widgets/widgets.css' />
<link rel='stylesheet' href='css/style.css' />
<link rel="stylesheet" href="css/index.css"/>
<link rel="stylesheet" href="css/topMenu.css"/>
<link rel="stylesheet" href="css/DrawHelper.css">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<style type="text/css">
html, body{
width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden;
min-height: 700px;min-width: 800px;
}
</style>
<script src="js/jquery.min.js"></script>
<script src="js/moveDiv.js"></script>
<script src="js/echarts.js"></script>
<script src="js/showpng.js"></script>
</head>
<body>
<div id="windows">
<div id="topMenuBox" >
<div id="queryBox">
<input id="queryTxt" type="text" onkeyup="autoInput(this)" onfocus="this.value='';autoInput(this)" list="url_list" placeholder="地点检索" data-options="required:true" >
<input id="queryBtn" type="image" src="img/search.png" >
</div>
<!--<div id="queryConfigBox" >
<input id="queryConfig" title="搜索范围设置" class="hoverInput" type="image" src="img/searchConfig.png" >
</div>-->
<div id="imgQueryBox" >
<input id="imgQuery" title="图像检索" class="hoverInput" type="image" src="img/imgSearch.png" >
</div>
<datalist id="url_list">
<!--<option value="输电塔" ></option>
<option value="变电站" ></option>
<option value="火力发电站" ></option>
<option value="水力发电站" ></option>
<option value="风力发电站" ></option>
<option value="光伏发电站" ></option>-->
</datalist>
<div id="selwin" ></div>
<!-- 顶部菜单栏-->
<div id="topMenu" class="container">
<nav class="nav nav3">
<ul id="topmenu1">
<!-- <li>
<a href="#">统计区域选择</a>
<ul>
<li><a href="#">当前屏幕</a></li>
<li><a href="#">框选</a></li>
<li><a href="#">多边形选择</a></li>
</ul>
</li>
<li id="fangqixuanqu">
<a href="#" onclick="var a = back();
viewer.entities.remove(a[4])">放弃选区</a>
</li>-->
<li>
<a href="#" onclick="viewer.camera.flyTo({
//destination: Cesium.Cartesian3.fromDegrees(configJson.longitude, configJson.lautitude, configJson.elevation),
destination: Cesium.Cartesian3.fromDegrees(111.07, 39.05, 10000000),
orientation: {
heading : Cesium.Math.toRadians(0),
pitch : Cesium.Math.toRadians(-90),
roll : Cesium.Math.toRadians(0)
}
});">初始视角</a>
</li>
<li>
<a id="cesiumClear" href="#" onclick="">图层清空</a>
</li>
<li>
<a href="#" onclick="
Cesium.Fullscreen.requestFullscreen(document.body)
">全屏显示</a>
</li>
<li>
<a id="draw" href="#" onclick="">标注绘制</a>
<ul>
<li><a href="#" id="label" style="font-size:13.3px">文字注记</a></li>
<li><a href="#" id= "polyline" style="font-size:13.3px">多段线条</a></li>
<li><a href="#" id= "polygon" style="font-size:13.3px">多边的形</a></li>
<li><a href="#" id= "geojson_output" style="font-size:13.3px">保存记录</a></li>
<li><a href="#" id= "geojson_input" style="font-size:13.3px">加载记录</a></li>
<li><a href="#" id= "mark_clear" style="font-size:13.3px">清空标注</a></li>-->
</ul>
</li>
<li>
<a href="#" id="exampleChoice">全球示范区</a>
<ul>
<li><a href="#" id="global" style="font-size:13.3px">全球示范区</a></li>
<li><a href="#" id= "china" style="font-size:13.3px">中国及周边</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
<div id="search_results_div"></div>
<!--<div id="queryArea">
<div id="containQueryBox" >
<table class="eletable" style="top: 10px;left: 10px">
<tr>
<td >
<input name="sameRad" style="vertical-align:middle;" type="radio" id="rectArea" />
<label for="rectArea" style="color: white;border-radius: 2px" >使用框选范围</label>
</td>
</tr>
<tr>
<td >
<input style="vertical-align:middle;" type="radio" id="rectSelfArea" name="sameRad" />
<label for="rectSelfArea" style="color: white;border-radius: 2px" >自定义范围</label>
</td>
</tr>
</table>
<div id ='text1'>
左上角:
<input id="lng1" name="loc" style="width: 60px;" type="text" onfocus="this.value=''" disabled="disabled" placeholder="经度" >
,
<input id="lat1" name="loc" style="width: 60px" type="text" onfocus="this.value=''" disabled="disabled" placeholder="纬度" >
</div>
<div id ='text2' style="font-size:10px;left: 24px;color:white;position: absolute;top: 70px">
右下角:
<input id="lng2" name="loc" style="width: 60px;" type="text" onfocus="this.value=''" disabled="disabled" placeholder="经度" data-options="required:true" >
,
<input id="lat2" name="loc" style="width: 60px" type="text" onfocus="this.value=''" disabled="disabled" placeholder="纬度" data-options="required:true" >
</div>
</div>
<div id="querySure">
<button id="querySureBtn" class="cesium-button eleimg" >确定</button>
</div>
<div id="queryDelay">
<button id="queryDelayBtn" style="background-color: rgba(255,0,25,0.5)" class="cesium-button eleimg" >取消</button>
</div>
</div>-->
<div id="cesiumContainer">
</div>
<div id="leftMenu">
<div id="eleFacBox" class="eleBox" title="电力设施">
<input id="elefac" class="eleimg" name="button" type="image" src="img/elefac.png">
</div>
<div id="eleLoadBox" class="eleBox" style="top: 80px;" title="电力负荷">
<input id="eleload" class="eleimg" type="image" src="img/eleload1.png">
</div>
<div id="eleGeoBox" class="eleBox" style="top:120px">
<input id="elegeo" class="eleimg" type="image" src="img/elegeo.png" title="土地覆盖">
</div>
</div>
<div id="rightMenu">
<div id="charts" class="eleBox" style="left:1px;" title="图表统计">
<input id="chartsBtn" class="eleimg" name="button" type="image" src="img/charts.png">
</div>
<div id="eleLoadBox1" class="eleBox" style="top: 80px;left: 1px" title="图表管理">
<input id="chartManBtn" class="eleimg" type="image" src="img/chartCon.png">
</div>
</div>
<div id="eleFacMenu" class="eleMenu" style="height:300px">
<div class="leftTitle">电力设施</div>
<div class="leftback" title="关闭">
<input id="leftbackBtn" name="button" type="image" src="img/layer.png" class="eleimg">
</div>
<div id="elekind">
<h4 class="lititle" align=center>电力设施类型</h4>
<table class="eletable">
<tr>
<td >
<input style="vertical-align:middle;" type="checkbox" id="powerSattionTypeAll" name="powerTypeLay" />
<label for="powerSattionTypeAll" style="font-size: 13.5px;background-color: #000000;border-radius: 2px" >全选</label>
</td>
</tr>
<tr>
<td onmouseout="hiddenPic()" onmousemove="showPic(event,'img/he.jpg')">
<div style="width: 10px;height: 10px;border-radius:7px;position: absolute;vertical-align: bottom;background: #FFFF00;left: 58px"></div>
<input type="checkbox" name="powerTypeLay" id="nuclearPowerStation" />
<label for="nuclearPowerStation">核电站</label>
</td>
<td onmouseout="hiddenPic()" onmousemove="showPic(event,'img/huo.jpg')">
<div style="width: 10px;height: 10px;border-radius:7px;position: absolute;vertical-align: bottom;background: #FF0000;left: 201px"></div>
<input type="checkbox" name="powerTypeLay" id="thermalPowerStation" />
<label for="thermalPowerStation">火力发电站</label>
</td>
</tr>
<tr>
<td onmouseout="hiddenPic()" onmousemove="showPic(event,'img/shui.jpg')">
<div style="width: 10px;height: 10px;border-radius:7px;position: absolute;vertical-align: bottom;background: #0000FF;left: 81px"></div>
<input type="checkbox" name="powerTypeLay" id="hydraulicPowerStation" />
<label for="hydraulicPowerStation">水力发电机</label>
</td>
<td onmouseout="hiddenPic()" onmousemove="showPic(event,'img/guang.jpg')">
<div style="width: 10px;height: 10px;border-radius:7px;position: absolute;vertical-align: bottom;background: #FFFFFF;left: 201px"></div>
<input type="checkbox" name="powerTypeLay" id="photovoltaicPowerStation" />
<label for="photovoltaicPowerStation">光伏发电站</label>
</td>
</tr>
<tr>
<td onmouseout="hiddenPic()" onmousemove="showPic(event,'img/feng.jpg')">
<div style="width: 10px;height: 10px;border-radius:7px;position: absolute;vertical-align: bottom;background: #00FF00;left: 81px"></div>
<input type="checkbox" name="powerTypeLay" id="windPowerStation" />
<label for="windPowerStation">风力发电站</label>
</td>
<td onmouseout="hiddenPic()" onmousemove="showPic(event,'img/bian.jpg')">
<div style="width: 10px;height: 10px;border-radius:7px;position: absolute;vertical-align: bottom;background: #FF00FF;left: 201px"></div>
<input type="checkbox" name="powerTypeLay" id="largesubstation" />
<label for="largesubstation">大型变电站</label>
</td>
</tr>
</table>
</div>
<div id="eleshow">
<h4 class="lititle" align=center>目标显示形式</h4>
<table class="eletable" style="top:-20px;width: 240px" >
<tr>
<td >
<input type="radio" name="eleTypeP2D" id="eleTypePoint" checked/>
<label for="eleTypePoint">点</label>
</td>
<td>
</td>
<td style="position:absolute;float: right;right: 50px">
<input type="radio" name="eleTypeP2D" id="eleType3DModel" />
<label for="eleType3DModel">三维模型</label>
</td>
</tr>
</table>
</div>
</div>
<div id="showResult">
<div id="eleshowimg" >
<h4 class="lititle" align=center>输出影像选择</h4>
<div id="allimg" style="position:absolute;top:20px;left:2px;height:20px;width:110px;background-color:rgba(155,155,155,0.8);color:#ffffff;font-size:12px;border-radius:5px;text-align:center">
<a id="btlogin1" href="#" style="color:#ffffff;text-decoration:none;position:relative;top:1px;">所有影像列表</a>
</div>
<div id="allimg2" style="position:absolute;top:20px;left:115px;height:20px;width:110px;background-color:rgba(155,155,155,0.8);color:#ffffff;font-size:12px;border-radius:5px;text-align:center">
<a id="btlogin2" href="#" style="color:#ffffff;text-decoration:none;position:relative;top:1px;">当前影像列表</a>
</div>
<!--搜索图片弹窗
<table style="color:#ffffff;position:absolute;left:0; border:none;text-align:center;width:350px;">
<tr bgcolor=rgba(100,100,100)>
<td>
</td>
<td>
影像ID
</td>
<td>
文件名称
</td>
<td>
摄影日期
</td>
<td>
影像类型
</td>
<td>
传感器
</td>
<td>
备注
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow12" />
</td>
<td>
_000
</td>
<td>
whu_000
</td>
<td>
20140203
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow13" />
</td>
<td>
_001
</td>
<td>
whu_001
</td>
<td>
20140203
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow14" />
</td>
<td>
_002
</td>
<td>
whu_002
</td>
<td>
20140203
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow15" />
</td>
<td>
_003
</td>
<td>
whu_003
</td>
<td>
20140203
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow16" />
</td>
<td>
_004
</td>
<td>
whu_004
</td>
<td>
20140203
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow71" />
</td>
<td>
_005
</td>
<td>
whu_005
</td>
<td>
20140203
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow18" />
</td>
<td>
_006
</td>
<td>
whu_006
</td>
<td>
20140203
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow10" />
</td>
<td>
_007
</td>
<td>
whu_007
</td>
<td>
20140203
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow111" />
</td>
<td>
<label for="isshow1">_010</label>
</td>
<td>
whu_010
</td>
<td>
20140406
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow123" />
</td>
<td>
_011
</td>
<td>
whu_011
</td>
<td>
20140406
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow102" />
</td>
<td>
_012
</td>
<td>
whu_012
</td>
<td>
20140406
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow103" />
</td>
<td>
_013
</td>
<td>
whu_013
</td>
<td>
20140406
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow104" />
</td>
<td>
_014
</td>
<td>
whu_014
</td>
<td>
20140406
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow104" />
</td>
<td>
_015
</td>
<td>
whu_015
</td>
<td>
20140406
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow156" />
</td>
<td>
_016
</td>
<td>
whu_016
</td>
<td>
20140406
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="" value="1" id="isshow831" />
</td>
<td>
_017
</td>
<td>
whu_017
</td>
<td>
20140406
</td>
<td>
全色
</td>
<td>
OLI
</td>
<td>
1区
</td>
</tr>
</table>
-->
<div id="checkshow" style="position:relative;left:223px;top:-30px;color:#ffffff;font-size:12px">
<input type="checkbox" name="" value="1" id="isshowall" /><label for="isshowall">全部显示</label>
</div>
</div>
</div>
<div id="eleLoadMenu" style="height:170px;" class="eleMenu">
<div class="leftTitle">电力负荷</div>
<div class="leftback" title="关闭">
<input id="leftbackBtn1" name="button" type="image" src="img/layer.png" class="eleimg">
</div>
<div id="eleloadkind">
<h4 class="lititle" align=center>电力负荷图</h4>
<table class="eletable">
<tr>
<td>
<input type="checkbox" name="energyEatone" value="1" id="energyEatMap" />
<label for="energyEatMap">电力消耗专题图</label>
</td>
<td>
<input type="checkbox" name="nightRGBone" disabled="disabled" value="1" id="nightRGB" />
<label for="nightRGB">夜光电力彩色图</label>
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="night_powerone" disabled="disabled" value="1" id="night_power" />
<label for="night_power">夜光电力灰度图</label>
</td>
<td>
<input type="checkbox" name="" value="1" disabled="disabled" id="c254" />
<label for="c254">其它电力专题图</label>
</td>
</tr>
</table>
</div>
<!--
<div id="elecondition0" >
<h4 class="lititle" align=center>负荷等级选择</h4>
<table class="eletable" style="top: -30px">
<tr>
<td>
<input type="checkbox" name="" value="1" id="c10" />
<label for="c10">一级负荷</label>
</td>
<td>
<input type="checkbox" name="" value="1" id="c20" />
<label for="c20">二级负荷</label>
</td>
<td>
<input type="checkbox" name="" value="1" id="c21" />
<label for="c21">三级负荷</label>
</td>
</tr>
</table>
</div>
-->
</div>
<div id="eleGeoMenu" class="eleMenu" style="height:190px;">
<div class="leftTitle">土地覆盖</div>
<div class="leftback" title="关闭">
<input id="leftbackBtn2" name="button" type="image" src="img/layer.png" class="eleimg">
</div>
<div id="elegeoshow">
<h4 class="lititle" align=center>土地覆盖分布</h4>
<table class="eletable">
<tr>
<td>
<input type="checkbox" name="mineralone" id="MineralslLayer" />
<label for="MineralslLayer">矿产</label>
</td>
<td>
<input type="checkbox" name="tdtTerBasicLayerone" value="1" id="tdtTerBasicLayer" />
<label for="tdtTerBasicLayer">地形</label>
</td>
<td>
<input type="checkbox" name="plantone" value="1" id="plant" />
<label for="plant">植被</label>
</td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</table >
<table class="eletable">
<!--
<tr>
<td>
<input type="checkbox" name="landuseone" value="1" id="landuse" />
<label for="landuse">影像图</label>
</td>
</tr>-->
<tr>
<td>
<div style="width: 20px;height: 15px;position: absolute;background: #FF00FF;left: 58px"></div>
<input type="checkbox" name="landuseone" disabled="disabled" value="1" id="sence_residential" />
<label for="sence_residential">住宅区</label>
</td>
<td>
<div style="width: 20px;height: 15px;position: absolute;background: #0000FF;left: 137px"></div>
<input type="checkbox" name="" value="1" id="sence_water" disabled="disabled" />
<label for="sence_water">水区</label>
</td>
<td>
<div style="width: 20px;height: 15px;position: absolute;background: #000000;left: 216px"></div>
<input type="checkbox" name="" value="1" id="sence_mining" disabled="disabled" />
<label for="sence_mining">矿区</label>
</td>
</tr>
<tr>
<td>
<div style="width: 20px;height: 15px;position: absolute;background: #66A61E;left: 58px"></div>
<input type="checkbox" name="" value="1" id="sence_farmland" disabled="disabled" />
<label for="sence_farmland">农业区</label>
</td>
<td>
<div style="width: 20px;height: 15px;position: absolute;background: #7570B3;left:137px"></div>
<input type="checkbox" name="" value="1" id="sence_industrial" disabled="disabled" />
<label for="sence_industrial">工业区</label>
</td>
<td>
<div style="width: 20px;height: 15px;position: absolute;background: #00FF00;left: 216px"></div>
<input type="checkbox" name="" value="1" id="sence_forest" disabled="disabled" />
<label for="sence_forest">林业区</label>
</td>
</tr>
<tr>
<td>
<div style="width: 20px;height: 15px;position: absolute;background: #EE9A00;left: 58px"></div>
<input type="checkbox" name="" value="1" id="sence_f1" disabled="disabled" />
<label for="sence_f1">待定区</label>
</td>
<td>
<div style="width: 20px;height: 15px;position: absolute;background: #EE30A7;left:137px"></div>
<input type="checkbox" name="" value="1" id="sence_i2" disabled="disabled" />
<label for="sence_i2">待定区</label>
</td>
</tr>
</table>
</div>
</div>
<div id="chartsMenu">
<div id="RightTitle">图表统计</div>
<div id="rightback" class="rightback" title="关闭">
<input id="rightbackBtn" class="rightbackBtn" type="image" src="img/layer.png">
</div>
<div id="selectRange" class="selectRange" >
<h4 class="lititle" align=center>统计范围选择</h4>
<div class="sel" >
<input style="position: relative;width: 78px;height: 78px" id="selallBtn" type="image" src="img/selall.png">
</div>
<div id="rectBox"></div>
<div id="polygonBox"></div>
</div>
<div id="countBtnBox">
<button id="countBtn" class="cesium-button eleimg">统计</button>
</div>
</div>
<div id="chartManager">
<div id="RightTwoTitle">图表管理</div>
<div id="righttwoBtn" class="rightback" title="关闭">
<input id="righttwoback" class="rightbackBtn" type="image" src="img/layer.png">
</div>
<div id="selecttwoRange" style="height: 125px" class="selectRange" >
<table class="eletable" style="color:white;font-weight: 800;left:15px;top:20px">
<tr>
<td >
<input type="checkbox" id="chart1" />
<label for="chart1">电力设施统计</label>
</td>
<td>
<input type="checkbox" id="chart25" />
<label for="chart25">区域电力消费</label>
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
<input type="radio" id="chart3" name="oneChartBox"/>
<label for="chart3">电力生产统计</label>
</td>
<td>
<input type="radio" id="chart4" name="oneChartBox" />
<label for="chart4">能源弹性系数</label>
</td>
</tr>
<tr>
<td>
<input type="radio" name="oneChartBox" value="1" id="chart5" />
<label for="chart5">日均能源消耗</label>
</td>
<td>
<input type="radio" name="oneChartBox" value="1" id="chart6" />
<label for="chart6">人均生活能源消耗</label>
</td>
</tr>
<tr>
</tr>
<tr>
<td>
<input type="radio" name="oneChartBox" value="1" id="chart7" />
<label for="chart7">各省份发电量</label>
</td>
<td>
<input type="radio" name="oneChartBox" value="1" id="chart8" />
<label for="chart8">分行业电力消耗</label>
</td>
</tr>
</table>
</div>
<div id="chartclear" style="width:80px;height:30px;position: absolute;top:184px;left: 100px" >
<button id="countBtn1" style="background-color: rgba(255,0,25,0.5)" class="cesium-button eleimg" >清空</button>
</div>
</div>
<div id="PieChart" style="position: absolute;z-index: 80;width: 380px;display: none;
height: 400px;top: 70px;left: 370px;" onmousedown="mouseDown(this,event)"
onmousemove="mouseMove(this,event)" onmouseup="mouseUp(this,event)">
</div>
<div id="BarChart" style="position: absolute;z-index: 81;width: 800px;
height:500px;bottom:40px;left: 345px;display: none" onmousedown="mouseDown(this,event)"
onmousemove="mouseMove(this,event)" onmouseup="mouseUp(this,event)">
</div>
<div id="areaElePieChart" style="position: absolute;z-index: 91;width: 830px;
height:300px;bottom:30px;left: 355px;display: none;">
</div>
<!-- 图片检索 -->
<div id="pictureBox">
<div class="leftTitle" style="left: 200px">图像检索</div>
<div style="position: absolute;width: 25px;height: 25px;right: 4px;top: 4px;" title="关闭">
<input id="pictureBoxCloseBtn" name="button" type="image" src="img/layer.png" class="eleimg">
</div>
<div id="pictureChildBox">
<ul id="picture_ul" >
</ul>
</div>
</div>
<!--
<div id="areaElePieChart" style="position: absolute;z-index: 81;width: 550px;
height:400px;top:320px;left: 600px;display: none" onmousedown="mouseDown(this,event)"
onmousemove="mouseMove(this,event)" onmouseup="mouseUp(this,event)">
</div>-->
<div id="cengControll" align="center" title="图层管理">
<input id="tuBtn" style="width: 60px;height: 60px;position: relative;"
type="image" src="img/tuceng.png">
</div>
<div id="controllBox" style=" position: absolute;width: 257px;height: auto;max-height: 605px;
z-index: 999;top:100px;left: 65px;" >
<div class="leftTitle" style="font-size: 1.4em;position: absolute">图层管理</div>
<div class="leftback" style="top: 4px;left:225px;position: absolute">
<input id="leftbackBtn3" name="button" type="image" src="img/layer.png" class="eleimg">
</div>
<h4 id="set1" style="font-size: 1.14em;top: 15px" class="lititle" align=center>专题图</h4>
<ul id="elecondition2" class="elecondition" style="top:0;height: auto; max-height:180px;padding-top: 0;width: 205px;">
</ul>
<ul id="elecondition1" class="elecondition" style="top:-15px; height: 165px;padding-top: 0;width: 205px;">
</ul>
<div style=" position: relative;width: inherit;height: 10px;top:15px "><h4 id="set" style=" top: -45px; font-size: 1.14em" class="lititle" align=center>底图</h4></div>
<ul id="elecondition3" class="elecondition" style="top:-34px; height: 160px;padding-top: 0;width: 205px;">
</ul>
</div>
<div id="powerShowWin" style="position: absolute; z-index: 100;width: 253px;height: 470px;overflow-y: auto;
background-color: rgba(60,60,60,0.8);box-shadow: 0 3px 3px rgba(0,0,0,0.9);text-align: center;top: 160px;
left: 860px;border-radius: 12px;display: none;
" onmousedown="mouseDown(this,event)" onmousemove="mouseMove(this,event)" onmouseup="mouseUp(this,event)">
<div id="closeShowWin" style="position: absolute;width: 15px;height: 15px;top:8px;right: 8px" title="关闭">
<input id="" style="width: inherit;height: inherit" type="image" src="img/ponsume.png">
</div>
<h4 style="color:#ffffff;top: 0;" align=center>电力消费统计情况</h4>
<table style="left: 2px;top:50px;position: absolute">
<tr><th style="color:#ffffff;">范围耗电:</th><td align="center" ><input id="powerConsumeInput" style="border: 1px solid #ffffff;color:#ffffff;background-color: rgba(60,60,60,0.6)" value='12031566116/万千瓦时'></td></tr>
<tr><th style="color:#ffffff;">所选面积:</th><td><input id="areaInput" style="border: 1px solid #ffffff;color:#ffffff;background-color: rgba(60,60,60,0.6)" value='/万平方公里'></td></tr>
<tr><th style="color:#ffffff;">单位耗电:</th><td><input id="powerArea" style="border: 1px solid #ffffff;color:#ffffff;background-color: rgba(60,60,60,0.6)" value='2165111/千瓦时每平方公里'></td></tr>
</table>
<div id="powerShowChart" style="height: 170px;width: 240px;position: absolute;top: 123px;left:5px;border: solid #ffffff 1px;box-shadow: 0 0 10px grey;"></div>
<div id="powerShowChart1" style="height: 170px;width: 240px;position: absolute;top: 293px;left:5px;border: solid #ffffff 1px;box-shadow: 0 0 10px grey;"></div>
</div>
<div id="bottomMenu">
<div id="latlng_show" style="width: 600px;height: 25px;position: absolute;
bottom: 0; right: 80px;z-index:100; ">
<div style="width: 200px;height: 25px;float: right;">
<span style="font-size: 12px; color: #edffff">纬度:<span id="latitude_show"></span>°</span>
</div>
<div style="width: 200px;height: 25px;float: right;">
<span style="font-size: 12px; color: #edffff">经度:<span id="longitude_show"></span>°</span>
</div>
<div style="width: 200px;height: 25px;float: right;">
<span style="font-size: 12px; color: #edffff">视角高度:<span id="altitude_show"></span>km</span>
</div>
<div id="tes" style="font-size: 12px; color: #edffff"></div>
</div>
</div>
</div>
<div id="Layer1" style="display: none; position: absolute; z-index: 100;"></div>
<div id="notPoint" style="display: none; position: absolute; z-index: 100;width: 253px;height: 160px;overflow-y: auto;
background-color: rgba(60,60,60,0.8);box-shadow: 0 3px 3px rgba(0,0,0,0.9);text-align: center;
border-radius: 12px;
" >
<h4 id="upname" style="color:#ffffff;top: 0;" align=center></h4>
<table id="showTable" style="left: 5px;top:40px;position: absolute">
<tr><td>说明:...</td></tr>
</table>
</div>
<!-- Add your site or application content here -->
</body>