surprise
2023-12-29 18377dc5d61caf3a6a0835e17015ac2601f8709d
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
{
    "name": "ALL",
    "id": 1,
    "open": true,
    "children": [
        {
            "id": "zhengwutuceng",
            "name": "政务图层",
            "children": [
                {
                    "id": "8E36B8A4",
                    "name": "土地管理",
                    "children": [
                        {
                            "id": "gongyebiaozhundi",
                            "name": "工业标准地",
                            "children": [
                                {
                                    "id": "guihuayongdi",
                                    "name": "规划用地",
                                    "checked": false,
                                    "class": "",
                                    "//": "//",
                                    "sourceType": "",
                                    "urls": "",
                                    "rename": false
                                },
                                {
                                    "id": "FWFQ225",
                                    "name": "225范围分区规划",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://10.10.4.116:8070/gisserver/wmsserver/FWFQ225",
                                    "layer": "",
                                    "srs": "EPSG:4490",
                                    "lon": "116.523",
                                    "lat": "39.782",
                                    "Level": 1,
                                    "rename": false,
                                    "alpha": 1,
                                    "zIndex": 1
                                },
                                {
                                    "id": "CYZT433",
                                    "name": "433产业组团",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://10.10.4.116:8070/gisserver/wmsserver/CYZT433",
                                    "layer": "",
                                    "srs": "EPSG:4490",
                                    "lon": "116.523",
                                    "lat": "39.782",
                                    "Level": 1,
                                    "rename": false
                                },
                                {
                                    "id": "CSGXYQ",
                                    "name": "城市更新园区",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://10.10.4.116:8070/gisserver/wmsserver/CSGXYQ",
                                    "layer": "",
                                    "srs": "EPSG:4490",
                                    "lon": "116.523",
                                    "lat": "39.782",
                                    "Level": 1,
                                    "rename": false
                                },
                                {
                                    "id": "XMXX",
                                    "name": "项目信息",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://10.10.4.116:8070/gisserver/wmsserver/XMXX",
                                    "layer": "",
                                    "srs": "EPSG:4490",
                                    "lon": "116.523",
                                    "lat": "39.782",
                                    "Level": 1,
                                    "rename": false
                                },
                                {
                                    "id": "ZMQFW",
                                    "name": "自贸区范围",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://10.10.4.116:8070/gisserver/wmsserver/ZMQFW",
                                    "layer": "",
                                    "srs": "EPSG:4490",
                                    "lon": "116.523",
                                    "lat": "39.782",
                                    "Level": 1,
                                    "rename": false
                                }
                            ],
                            "rename": false,
                            "expanded": false,
                            "checked": false
                        }
                    ],
                    "rename": false,
                    "expanded": false
                },
                {
                    "id": "EB3C829A",
                    "name": "企业管理",
                    "children": [
                        {
                            "id": "qiyexinxi",
                            "name": "企业信息",
                            "children": [
                                {
                                    "id": "QYK",
                                    "name": "法人库",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "",
                                    "layer": "",
                                    "srs": "EPSG:4490",
                                    "lon": "116.523",
                                    "lat": "39.782",
                                    "Level": 1,
                                    "rename": false
                                },
                                {
                                    "id": "qiyepoi",
                                    "name": "企业POI",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://10.10.4.116:8070/gisserver/wmsserver/QYK",
                                    "layer": "",
                                    "srs": "EPSG:4490",
                                    "lon": "116.523",
                                    "lat": "39.782",
                                    "Level": 1,
                                    "rename": false
                                }
                            ],
                            "rename": false,
                            "expanded": false,
                            "checked": false
                        }
                    ],
                    "rename": false,
                    "expanded": true
                },
                {
                    "id": "1DF42B95",
                    "name": "城市运行",
                    "children": [
                        {
                            "id": "007C69DA",
                            "name": "城市部件",
                            "children": [
                                {
                                    "id": "FFAFA2F2",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "路灯杆",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "路灯杆",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "image": "http://183.162.245.49:18073/camera.png",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "1907DB33",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "路名牌杆",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "路名牌杆",
                                    "color": "#ffffff",
                                    "outlineColor": "#000000",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "E0682BE3",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "交通信号灯杆",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "交通信号灯杆",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "EDEA2262",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "其它杆体",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "其它杆体",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "D6791646",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "多功能综合杆体",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "多功能综合杆体",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "58E5D170",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "监控杆",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "监控杆",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "14F4A8A6",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "监控标志牌",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "监控标志牌",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "C82888E4",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "交通标志牌",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "交通标志牌",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "1D0644C0",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "交通标志杆",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "交通标志杆",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "FC8C2776",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "水质分析仪",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "水质分析仪",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "9180586C",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "翻斗式雨量计",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "翻斗式雨量计",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "A54AAC97",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "环卫车辆作业管理终端",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "环卫车辆作业管理终端",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "8F29A025",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "电子门锁",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "电子门锁",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "0B233F71",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "数据采集仪",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "数据采集仪",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "8BB210D3",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "蓝牙嗅探电子围栏",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "蓝牙嗅探电子围栏",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                },
                                {
                                    "id": "DF0DB1F5",
                                    "sourceType": "wfs",
                                    "alpha": 1,
                                    "name": "空气检测小站",
                                    "class": "point",
                                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_CSBJ_wfs",
                                    "layer": "空气检测小站",
                                    "color": "#ffffff",
                                    "outlineColor": "#ffffff",
                                    "clampToGround": true,
                                    "classificationType": 2,
                                    "text": "[部件名称]",
                                    "minimumLevel": 13,
                                    "maximumLevel": 22,
                                    "font": "Arial",
                                    "scale": 2,
                                    "outlineWidth": 1,
                                    "offsetX": 0,
                                    "offsetY": 0,
                                    "imageScale": 1,
                                    "disableDepthTestDistance": "Infinity",
                                    "checked": false,
                                    "rename": false
                                }
                            ],
                            "rename": false,
                            "expanded": true
                        }
                    ],
                    "rename": false,
                    "checked": false,
                    "expanded": true
                },
                {
                    "id": "6BDA3AFA",
                    "name": "社会民生",
                    "children": [],
                    "rename": false
                },
                {
                    "id": "976538F6",
                    "name": "经济态势",
                    "children": [],
                    "rename": false,
                    "checked": false
                }
            ],
            "rename": false,
            "expanded": false,
            "checked": false
        },
        {
            "id": "IOT",
            "name": "物联感知",
            "children": [
                {
                    "id": "B3D2B5B2",
                    "sourceType": "wms",
                    "name": "视频监控",
                    "urls": "http://183.162.245.49:18073/gisserver/wmsserver/YZ_SPJK",
                    "maximumLevel": 26,
                    "alpha": 1,
                    "zIndex": 10,
                    "Level": "15,26",
                    "checked": false,
                    "rename": false,
                    "flyTo": [
                        "116.49131",
                        "39.78080",
                        "1985.40",
                        "0.0",
                        "-49.3"
                    ]
                },
                {
                    "id": "BAB84B0D",
                    "sourceType": "wfs",
                    "alpha": 1,
                    "name": "视频监控wfs",
                    "class": "point",
                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_SPJK_wfs",
                    "layer": "摄像头1129",
                    "color": "#ffffff",
                    "outlineColor": "#ffffff",
                    "clampToGround": true,
                    "classificationType": 2,
                    "text": "",
                    "image": "http://183.162.245.49:18073/camera.png",
                    "minimumLevel": 14,
                    "maximumLevel": 22,
                    "font": "Arial",
                    "scale": 2,
                    "outlineWidth": 1,
                    "offsetX": 0,
                    "offsetY": 0,
                    "imageScale": 1,
                    "disableDepthTestDistance": "Infinity",
                    "checked": false,
                    "rename": false,
                    "flyTo": [
                        "116.49140",
                        "39.78077",
                        "1985.39",
                        "360.0",
                        "-49.3"
                    ]
                },
                {
                    "id": "97FA631F",
                    "sourceType": "wms",
                    "name": "地铁沿线视频",
                    "urls": "http://183.162.245.49:18073/gisserver/wmsserver/YZ_DTYXSP",
                    "maximumLevel": 26,
                    "alpha": 1,
                    "zIndex": 11,
                    "Level": "14,20",
                    "checked": false,
                    "rename": false,
                    "flyTo": [
                        "116.49140",
                        "39.78077",
                        "1985.39",
                        "0.0",
                        "-49.3"
                    ]
                },
                {
                    "id": "BAB84B0F",
                    "sourceType": "wfs",
                    "alpha": 1,
                    "name": "地铁沿线视频wfs",
                    "class": "point",
                    "urls": "http://183.162.245.49:18073/gisserver/wfsserver/YZ_DTYXSP_wfs",
                    "layer": "地铁沿线视频",
                    "color": "#ffffff",
                    "outlineColor": "#ffffff",
                    "clampToGround": true,
                    "classificationType": 2,
                    "text": "",
                    "image": "http://183.162.245.49:18073/camera.png",
                    "minimumLevel": 14,
                    "maximumLevel": 22,
                    "font": "Arial",
                    "scale": 2,
                    "outlineWidth": 1,
                    "offsetX": 0,
                    "offsetY": 0,
                    "imageScale": 1,
                    "disableDepthTestDistance": "Infinity",
                    "checked": false,
                    "rename": false,
                    "flyTo": [
                        "116.49140",
                        "39.78077",
                        "1985.39",
                        "360.0",
                        "-49.3"
                    ]
                },
                {
                    "id": "2B6BB8D6",
                    "name": "基站",
                    "children": [
                        {
                            "id": "5g",
                            "name": "5G基站",
                            "checked": false,
                            "class": "lable",
                            "//": "//",
                            "sourceType": "geojson",
                            "urls": "",
                            "rename": false
                        },
                        {
                            "id": "wifi",
                            "name": "wifi基站",
                            "checked": false,
                            "sourceType": "geojson",
                            "radius": 0.2,
                            "class": "polylineVolume",
                            "urls": "",
                            "rename": false
                        },
                        {
                            "id": "pijizhan",
                            "name": "皮基站",
                            "checked": false,
                            "sourceType": "",
                            "radius": 0.2,
                            "class": "polylineVolume",
                            "urls": "http://10.10.4.115:8888/pijizhan/list",
                            "rename": false
                        }
                    ],
                    "rename": false,
                    "expanded": true,
                    "checked": false
                }
            ],
            "rename": false,
            "expanded": true,
            "_children": null,
            "checked": false
        },
        {
            "id": "jichutuceng",
            "name": "基础图层",
            "children": [
                {
                    "id": "zhengqushuju",
                    "name": "政区数据",
                    "children": [
                        {
                            "id": "18B25A94",
                            "sourceType": "wms",
                            "name": "边界60",
                            "urls": "http://183.162.245.49:18073/gisserver/wmsserver/YZ_BJ60",
                            "maximumLevel": 26,
                            "alpha": 1,
                            "zIndex": 6,
                            "Level": "11,20",
                            "checked": true,
                            "rename": false,
                            "flyTo": [
                                "116.51352",
                                "39.76102",
                                "30523.31",
                                "360.0",
                                "-89.8"
                            ]
                        },
                        {
                            "id": "47EC9636",
                            "sourceType": "wms",
                            "name": "边界225",
                            "urls": "http://183.162.245.49:18073/gisserver/wmsserver/YZ_BJ",
                            "maximumLevel": 26,
                            "alpha": 1,
                            "zIndex": 5,
                            "Level": "10,20",
                            "flyTo": [
                                "116.50281",
                                "39.75291",
                                "35307.96",
                                "0.0",
                                "-89.8"
                            ],
                            "checked": true,
                            "rename": false
                        },
                        {
                            "id": "643F7E56",
                            "sourceType": "wms",
                            "name": "自贸区",
                            "urls": "http://183.162.245.49:18073/gisserver/wmsserver/YZ_ZMQ",
                            "maximumLevel": 26,
                            "alpha": 1,
                            "zIndex": 7,
                            "Level": "12,22",
                            "flyTo": [
                                "116.51352",
                                "39.76102",
                                "30523.31",
                                "360.0",
                                "-89.8"
                            ],
                            "checked": true,
                            "rename": false
                        },
                        {
                            "id": "B5240114",
                            "sourceType": "wms",
                            "name": "乡镇",
                            "urls": "http://183.162.245.49:18073/gisserver/wmsserver/YZ_XZ",
                            "maximumLevel": 26,
                            "alpha": 1,
                            "zIndex": 4,
                            "Level": "9,20",
                            "checked": true,
                            "rename": false,
                            "flyTo": [
                                "116.59326",
                                "39.70783",
                                "68596.35",
                                "0.0",
                                "-89.8"
                            ]
                        },
                        {
                            "id": "CDCAB99E",
                            "sourceType": "wms",
                            "name": "亦企服务港",
                            "urls": "http://183.162.245.49:18073/gisserver/wmsserver/YZ_YQFWG",
                            "maximumLevel": 26,
                            "alpha": 1,
                            "zIndex": 8,
                            "Level": "12,20",
                            "checked": true,
                            "rename": false,
                            "flyTo": [
                                "116.53020",
                                "39.76293",
                                "25189.85",
                                "360.0",
                                "-89.8"
                            ]
                        }
                    ],
                    "rename": false,
                    "expanded": false,
                    "checked": false
                },
                {
                    "id": "shiliangtuceng",
                    "name": "二维地图",
                    "children": [
                        {
                            "id": "0CAAD18E",
                            "sourceType": "tdmap",
                            "name": "矢量地图",
                            "urls": "http://{s}.tianditu.com/vec_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=vec&tileMatrixSet=w&TileMatrix={TileMatrix}&TileRow={TileRow}&TileCol={TileCol}&tk=c53eb074c3fcba5ac86103d4d711bbe8",
                            "layer": "",
                            "alpha": 1,
                            "zIndex": 1,
                            "Level": "0,26",
                            "checked": false,
                            "rename": false
                        },
                        {
                            "id": "48EB9EB7",
                            "sourceType": "tdmap",
                            "name": "矢量注记",
                            "urls": "http://{s}.tianditu.com/cva_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=cva&tileMatrixSet=w&TileMatrix={TileMatrix}&TileRow={TileRow}&TileCol={TileCol}&tk=c53eb074c3fcba5ac86103d4d711bbe8",
                            "layer": "",
                            "alpha": 1,
                            "Level": [
                                0,
                                26
                            ],
                            "checked": false,
                            "rename": false
                        },
                        {
                            "id": "8A969952",
                            "sourceType": "b3dm",
                            "name": "建筑白模全域",
                            "urls": "http://183.162.245.49:18073/gisserver/c3dserver/YZ_BM/tileset.json",
                            "effects": false,
                            "effectsMaxHeight": 150,
                            "backFaceCulling": true,
                            "maximumScreenSpaceError": 16,
                            "maximumMemoryUsage": 200,
                            "heading": 0,
                            "roll": 0,
                            "pitch": 0,
                            "near": 0,
                            "far": 999999999,
                            "checked": false,
                            "rename": false
                        },
                        {
                            "id": "E519219A",
                            "sourceType": "arcgis",
                            "name": "ArcGIS影像",
                            "urls": "https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer",
                            "layer": "",
                            "alpha": 1,
                            "zIndex": 1,
                            "maximumLevel": 26,
                            "Level": [
                                0,
                                26
                            ],
                            "checked": true,
                            "rename": false
                        }
                    ],
                    "rename": false,
                    "expanded": true,
                    "checked": true
                },
                {
                    "id": "yingxiangtuceng",
                    "name": "二维影像",
                    "children": [
                        {
                            "id": "C0698021",
                            "sourceType": "wmts",
                            "name": "航拍影像",
                            "urls": "http://10.10.4.116:8081/Help4Gov/Vector/?request=1&year=&type=Sate_CGCS2000&level={TileMatrix}&x={TileRow}&y={TileCol}",
                            "alpha": 1,
                            "zIndex": 1,
                            "Level": "0,26",
                            "checked": false,
                            "rename": false
                        },
                        {
                            "id": "weixingyingxiang",
                            "name": "卫星影像",
                            "checked": false,
                            "class": "lable",
                            "//": "//",
                            "sourceType": "tdmap",
                            "urls": "http://10.10.4.116:8080/YZXNCS/ImageEngine/picdis/abc?request=1&level={TileMatrix}&x={TileRow}&y={TileCol}",
                            "rename": false,
                            "alpha": 1,
                            "zIndex": 11
                        }
                    ],
                    "rename": false,
                    "expanded": true,
                    "checked": false
                },
                {
                    "id": "shijingsanwei",
                    "name": "实景三维",
                    "children": [
                        {
                            "id": "2253dfeihexin",
                            "name": "225实景三维非核心区",
                            "checked": false,
                            "sourceType": "b3dm",
                            "urls": "http://10.10.4.115:7000/feihexinqu/tileset.json",
                            "rename": false
                        },
                        {
                            "id": "2253dhexin01",
                            "name": "225实景三维核心区01",
                            "sourceType": "b3dm",
                            "checked": false,
                            "urls": "http://10.10.4.115:7000/hexinqu01/tileset.json",
                            "rename": false
                        },
                        {
                            "id": "2253dhexin02",
                            "name": "225实景三维核心区02",
                            "sourceType": "b3dm",
                            "checked": false,
                            "urls": "http://10.10.4.115:7000/hexinqu02/tileset.json",
                            "rename": false
                        },
                        {
                            "id": "YZ-HX1-danti",
                            "name": "225实景三维核心区1单体",
                            "sourceType": "b3dm",
                            "checked": false,
                            "urls": "http://10.10.4.115:7000/danti/YZ-HX1-danti/tileset.json",
                            "rename": false
                        },
                        {
                            "id": "YZ-HX2-danti",
                            "name": "225实景三维核心区02单体",
                            "sourceType": "b3dm",
                            "checked": false,
                            "urls": "http://10.10.4.115:7000/danti/YZ-HX2-danti/tileset.json",
                            "rename": false
                        },
                        {
                            "id": "YZ-HX3-danti",
                            "name": "225实景三维核心区03单体",
                            "sourceType": "b3dm",
                            "checked": false,
                            "urls": "http://10.10.4.115:7000/danti/YZ-HX3-danti/tileset.json",
                            "rename": false
                        },
                        {
                            "id": "jianzhu",
                            "name": "225实景三维建筑",
                            "sourceType": "b3dm",
                            "checked": false,
                            "urls": "http://10.10.4.115/static/model/jianzhu/tileset.json",
                            "rename": false
                        }
                    ],
                    "rename": false,
                    "expanded": false,
                    "checked": false
                }
            ],
            "rename": false,
            "expanded": true,
            "checked": false
        }
    ],
    "flyTo": [
        107.50017,
        29.30734,
        7646864.07,
        0,
        -87.7
    ],
    "mapStatus": {
        "rotateFlyTime": 30,
        "sunLight": false,
        "lightIntensity": 2,
        "lightColor": "#ffffff",
        "brightness": 1,
        "contrast": 1,
        "saturation": 1
    }
}