北京经济技术开发区经开区虚拟城市项目-【前端】-Web
lixuliang
2023-12-22 38dc484e31723adb7b5e0869d91cc60e6590ee6a
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
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
{
  "id": "id",
  "name": "ALL",
  "children": [
    {
      "id": "xianzhaungshuju",
      "name": "图层数据",
      "children": [
        {
          "id": "jichucehui",
          "name": "基础测绘",
          "children": [
            {
              "id": "cehuijizhun",
              "name": "测绘基准",
              "children": []
            },
            {
              "id": "3Dchanpin",
              "name": "3D产品",
              "children": []
            },
            {
              "id": "yaoganyingxiang",
              "name": "遥感影像",
              "checked": true,
              "sourceType": "arcgis",
              "baseLayer": true,
              "urls": "https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer"
            },
            {
              "id": "jichudilixinxishujuku",
              "name": "基础地理信息数据库",
              "children": [
                {
                  "id": "zj",
                  "name": "POI",
                  "checked": false,
                  "//": "//",
                  "children": [
                    {
                      "id": "POI",
                      "name": "POI",
                      "checked": false,
                      "sourceType": "vector",
                      "urls": "http://36.7.136.132:18090/localserver/gwc/service/wmts",
                      "layer": "cite:POI_IX",
                      "class": "label",
                      "style": "./static/styles/POI18.json",
                      "minimumLevel": 9,
                      "maximumLevel": 16,
                      "minx": 118.33064272800004,
                      "miny": 27.895249155000045,
                      "maxx": 122.35754208900005,
                      "maxy": 30.75554449400005
                    },
                    {
                      "id": "RES_PT_8",
                      "name": "RES_PT_8",
                      "checked": false,
                      "sourceType": "vector",
                      "urls": "http://36.7.136.132:18090/localserver/gwc/service/wmts",
                      "layer": "cite:RES_PT_VIII",
                      "class": "label",
                      "style": "./static/styles/RES_PT7.json",
                      "minimumLevel": 6,
                      "maximumLevel": 8,
                      "minx": 118.33064272800004,
                      "miny": 27.895249155000045,
                      "maxx": 122.35754208900005,
                      "maxy": 30.75554449400005
                    },
                    {
                      "id": "RES_PT_9",
                      "name": "RES_PT_9",
                      "checked": false,
                      "sourceType": "vector",
                      "urls": "http://36.7.136.132:18090/localserver/gwc/service/wmts",
                      "layer": "cite:RES_PT_IX",
                      "class": "label",
                      "style": "./static/styles/RES_PT7.json",
                      "minimumLevel": 8,
                      "maximumLevel": 18,
                      "minx": 118.33064272800004,
                      "miny": 27.895249155000045,
                      "maxx": 122.35754208900005,
                      "maxy": 30.75554449400005
                    }
                  ]
                },
                {
                  "id": "jiaotong",
                  "name": "交通"
                },
                {
                  "id": "bm",
                  "name": "白模",
                  "children": [
                    {
                      "id": "bm5",
                      "name": "湖州市",
                      "checked": false,
                      "sourceType": "b3dm",
                      "urls": "http://36.7.136.132:18090/baimo/huzhou/tileset.json",
                      "SQL": {
                        "search_table": "huzhou",
                        "//": "//",
                        "featuregui": "要素ID",
                        "fcode": "代码",
                        "usource": "来源",
                        "floor": "楼层"
                      }
                    },
                    {
                      "id": "bm9",
                      "name": "舟山市",
                      "checked": false,
                      "sourceType": "b3dm",
                      "maximumScreenSpaceError": 8,
                      "Level": 16,
                      "urls": "http://36.7.136.132:18090/baimo/zhoushan/tileset.json"
                    }
                  ]
                },
                {
                  "id": "baimoyangli",
                  "name": "钱江新城白模样例",
                  "children": []
                }
              ]
            },
            {
              "id": "dilixinxigonggongfuwushujuku",
              "name": "地理信息公共服务数据库",
              "children": [
                {
                  "id": "ewzj",
                  "name": "影像注记",
                  "checked": false,
                  "//": "//",
                  "sourceType": "tdmap",
                  "urls": "http://{s}.tianditu.gov.cn/cia_w/wmts?service=wmts&request=GetTile&version=1.0.0&LAYER=cia&tileMatrixSet=w&TileMatrix={TileMatrix}&TileRow={TileRow}&TileCol={TileCol}&tk=837264f46e683ec982d452e78d71052e",
                  "layer": "cia"
                },
                {
                  "id": "tdtzj-3d",
                  "name": "天地图注记",
                  "checked": false,
                  "sourceType": "tdt_label",
                  "urls": "https://t{s}.tianditu.gov.cn/",
                  "token": "837264f46e683ec982d452e78d71052e"
                },
                {
                  "id": "diming",
                  "name": "地名注记",
                  "checked": false,
                  "//": "//",
                  "_children": [
                    {
                      "id": "xzdm17",
                      "name": "地级市"
                    },
                    {
                      "id": "xzdm18",
                      "name": "县级市"
                    },
                    {
                      "id": "xzdm19",
                      "name": "乡镇"
                    },
                    {
                      "id": "xzdm20",
                      "name": "行政村"
                    },
                    {
                      "id": "xzdm21",
                      "name": "自然村"
                    }
                  ]
                },
                {
                  "id": "xzq",
                  "name": "行政区划",
                  "checked": false,
                  "//": "//",
                  "_children": [
                    {
                      "id": "xzqsj1",
                      "name": "省界"
                    },
                    {
                      "id": "xzqdsj1",
                      "name": "地市界"
                    },
                    {
                      "id": "xzqdsj1",
                      "name": "县界"
                    },
                    {
                      "id": "xzqxsj1",
                      "name": "乡镇界"
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "id": "sanweishijing",
          "name": "三维实景",
          "children": [
            {
              "id": "dixingjidilishijing",
              "name": "地形级地理实景",
              "children": [
                {
                  "id": "swdx",
                  "name": "三维地形",
                  "checked": false,
                  "//": "//",
                  "sourceType": "terrain",
                  "urls": "http://36.7.136.132:11080/china/"
                }
              ]
            },
            {
              "id": "chengshijidilishijing",
              "name": "城市级地理实景",
              "children": [
                {
                  "id": "gaojingdushijing",
                  "name": "高精度实景三维模型",
                  "children": [
                    {
                      "id": "quzhousanwei",
                      "name": "衢州",
                      "children": [
                        {
                          "id": "KH",
                          "name": "开化县",
                          "checked": false,
                          "_children": [
                            {
                              "id": "qx_model1",
                              "name": "开化县002_1",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/KH1.400768/tileset.json"
                            },
                            {
                              "id": "qx_model2",
                              "name": "开化县002_2",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/KH2.400769/tileset.json"
                            },
                            {
                              "id": "qx_model3",
                              "name": "开化县002_3",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/KH3.400770/tileset.json"
                            }
                          ]
                        }
                      ]
                    },
                    {
                      "id": "jinhuasanwei",
                      "name": "金华",
                      "children": [
                        {
                          "id": "YK",
                          "name": "永康市",
                          "checked": false,
                          "_children": [
                            {
                              "id": "qx_model4",
                              "name": "永康市002_1",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/YK1.400771/tileset.json"
                            },
                            {
                              "id": "qx_model5",
                              "name": "永康市002_2",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/YK2.400772/tileset.json"
                            }
                          ]
                        }
                      ]
                    },
                    {
                      "id": "shaoxingsanwei",
                      "name": "绍兴",
                      "children": [
                        {
                          "id": "SZXC",
                          "name": "嵊州新昌",
                          "checked": false,
                          "_children": [
                            {
                              "id": "qx_model6",
                              "name": "嵊州新昌002_1",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/szxc1.400773/tileset.json"
                            },
                            {
                              "id": "qx_model7",
                              "name": "嵊州新昌002_2",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/szxc2.400774/tileset.json"
                            }
                          ]
                        },
                        {
                          "id": "XCX",
                          "name": "新昌县",
                          "checked": false,
                          "_children": [
                            {
                              "id": "qx_model4_1",
                              "name": "新昌县005_1",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/xc1.400291/tileset.json"
                            },
                            {
                              "id": "qx_model4_2",
                              "name": "新昌县005_2",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/xc2.400292/tileset.json"
                            },
                            {
                              "id": "qx_model4_3",
                              "name": "新昌县005_3",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/XC3.400289/tileset.json"
                            },
                            {
                              "id": "qx_model4_4",
                              "name": "新昌县005_4",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/XC4.400290/tileset.json"
                            },
                            {
                              "id": "qx_model4_5",
                              "name": "新昌县005_5",
                              "checked": false,
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/xc5.400293/tileset.json"
                            }
                          ]
                        },
                        {
                          "id": "shangyuqu",
                          "name": "上虞区",
                          "checked": false,
                          "_children": [
                            {
                              "id": "sanweishijing",
                              "name": "三维实景",
                              "//": "//",
                              "sourceType": "b3dm",
                              "urls": "http://223.4.72.70:3868/SG/b3dm/shangyu.399861/tileset.json",
                              "Center": [
                                120.8726951,
                                30.01566275,
                                46
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  ]
                },
                {
                  "id": "dixiakongjianshijing",
                  "name": "地下空间地理实景",
                  "children": []
                },
                {
                  "id": "guanxianyaosushijing",
                  "name": "管线要素地理实景",
                  "children": [
                    {
                      "id": "zhejiangzhongyiyaodaxue",
                      "name": "浙江中医药大学",
                      "lon": 120.143894,
                      "lat": 30.180120,
                      "height": 10000,
                      "_children": [
                        {
                          "id": "zyydx1",
                          "name": "浙江中医药大学1",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/zyydx.399873/tileset.json"
                        },
                        {
                          "id": "zyydx2",
                          "name": "浙江中医药大学2",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_污水welllid.399882/tileset.json"
                        },
                        {
                          "id": "zyydx3",
                          "name": "浙江中医药大学3",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_污水well.399881/tileset.json"
                        },
                        {
                          "id": "gtz4",
                          "name": "浙江中医药大学4",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_污水point.399880/tileset.json"
                        },
                        {
                          "id": "gtz5",
                          "name": "浙江中医药大学5",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_污水line.399879/tileset.json"
                        },
                        {
                          "id": "zyydx6",
                          "name": "浙江中医药大学6",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_监控welllid.399893/tileset.json"
                        },
                        {
                          "id": "zyydx7",
                          "name": "浙江中医药大学7",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_监控well.399892/tileset.json"
                        },
                        {
                          "id": "gtz8",
                          "name": "浙江中医药大学8",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_监控point.399891/tileset.json"
                        },
                        {
                          "id": "gtz9",
                          "name": "浙江中医药大学9",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_监控line.399890/tileset.json"
                        },
                        {
                          "id": "gtz10",
                          "name": "浙江中医药大学10",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_监控groundequipment.399889/tileset.json"
                        },
                        {
                          "id": "gtz11",
                          "name": "浙江中医药大学11",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_燃气welllid.399888/tileset.json"
                        },
                        {
                          "id": "zyydx12",
                          "name": "浙江中医药大学12",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_燃气well.399887/tileset.json"
                        },
                        {
                          "id": "zyydx13",
                          "name": "浙江中医药大学13",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_燃气underequipment.399886/tileset.json"
                        },
                        {
                          "id": "gtz14",
                          "name": "浙江中医药大学14",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_燃气point.399885/tileset.json"
                        },
                        {
                          "id": "gtz15",
                          "name": "浙江中医药大学15",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_燃气line.399884/tileset.json"
                        },
                        {
                          "id": "gtz16",
                          "name": "浙江中医药大学16",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_燃气groundequipment.399883/tileset.json"
                        },
                        {
                          "id": "zyydx17",
                          "name": "浙江中医药大学17",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_给水welllid.399899/tileset.json"
                        },
                        {
                          "id": "zyydx18",
                          "name": "浙江中医药大学18",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_给水well.399898/tileset.json"
                        },
                        {
                          "id": "gtz19",
                          "name": "浙江中医药大学19",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_给水underequipment.399897/tileset.json"
                        },
                        {
                          "id": "gtz20",
                          "name": "浙江中医药大学20",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_给水point.399896/tileset.json"
                        },
                        {
                          "id": "gtz21",
                          "name": "浙江中医药大学21",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_给水line.399895/tileset.json"
                        },
                        {
                          "id": "gtz22",
                          "name": "浙江中医药大学22",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_给水groundequipment.399894/tileset.json"
                        },
                        {
                          "id": "zyydx23",
                          "name": "浙江中医药大学23",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_路灯welllid.399904/tileset.json"
                        },
                        {
                          "id": "zyydx24",
                          "name": "浙江中医药大学24",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_路灯well.399903/tileset.json"
                        },
                        {
                          "id": "gtz25",
                          "name": "浙江中医药大学25",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_路灯point.399902/tileset.json"
                        },
                        {
                          "id": "gtz26",
                          "name": "浙江中医药大学26",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_路灯line.399901/tileset.json"
                        },
                        {
                          "id": "zyydx27",
                          "name": "浙江中医药大学27",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_路灯groundequipment.399900/tileset.json"
                        },
                        {
                          "id": "zyydx28",
                          "name": "浙江中医药大学28",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_供电welllid.399878/tileset.json"
                        },
                        {
                          "id": "gtz29",
                          "name": "浙江中医药大学29",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_供电well.399877/tileset.json"
                        },
                        {
                          "id": "gtz30",
                          "name": "浙江中医药大学30",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_供电point.399876/tileset.json"
                        },
                        {
                          "id": "zyydx31",
                          "name": "浙江中医药大学31",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_供电line.399875/tileset.json"
                        },
                        {
                          "id": "zyydx32",
                          "name": "浙江中医药大学32",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_供电line.399875/tileset.json"
                        },
                        {
                          "id": "gtz33",
                          "name": "浙江中医药大学33",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_供电groundequipment.399874/tileset.json"
                        },
                        {
                          "id": "gtz34",
                          "name": "浙江中医药大学34",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_雨水welllid.399913/tileset.json"
                        },
                        {
                          "id": "gtz35",
                          "name": "浙江中医药大学35",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_雨水well.399912/tileset.json"
                        },
                        {
                          "id": "gtz36",
                          "name": "浙江中医药大学36",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_雨水point.399911/tileset.json"
                        },
                        {
                          "id": "gtz37",
                          "name": "浙江中医药大学37",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_雨水line.399910/tileset.json"
                        },
                        {
                          "id": "gtz38",
                          "name": "浙江中医药大学38",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_通信welllid.399909/tileset.json"
                        },
                        {
                          "id": "gtz39",
                          "name": "浙江中医药大学39",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_通信well.399908/tileset.json"
                        },
                        {
                          "id": "gtz40",
                          "name": "浙江中医药大学40",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_通信point.399907/tileset.json"
                        },
                        {
                          "id": "gtz41",
                          "name": "浙江中医药大学41",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_通信line.399906/tileset.json"
                        },
                        {
                          "id": "gtz42",
                          "name": "浙江中医药大学42",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/_通信groundequipment.399905/tileset.json"
                        }
                      ]
                    }
                  ]
                },
                {
                  "id": "shuixiadilishijing",
                  "name": "水下地理实景",
                  "children": [
                    {
                      "id": "qiandaohu1",
                      "name": "千岛湖",
                      "children": [
                        {
                          "id": "qiandaohushuixiagaocheng",
                          "name": "千岛湖水下高程",
                          "checked": false,
                          "//": "//",
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/pnts/qdh.399862.cpt/tileset.json"
                        }
                      ]
                    }
                  ]
                },
                {
                  "id": "jiejingdilishijing",
                  "name": "街景地理实景",
                  "children": []
                },
                {
                  "id": "quanjingdilishijing",
                  "name": "全景地理实景",
                  "children": [
                    {
                      "id": "quanjingshijing",
                      "name": "全景浏览"
                    }
                  ]
                },
                {
                  "id": "kongneikongjiandilishijing",
                  "name": "室内空间地理实景",
                  "children": [
                    {
                      "id": "quzhoushineikongjian",
                      "name": "衢州",
                      "lon": 120.27494449783038,
                      "lat": 30.211917555989597,
                      "height": 20000,
                      "_children": [
                        {
                          "id": "gtz1",
                          "name": "衢州高铁站1",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/gtz.399868/tileset.json"
                        },
                        {
                          "id": "gtz2",
                          "name": "衢州高铁站2",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/gtz002.399867/tileset.json"
                        },
                        {
                          "id": "gtz3",
                          "name": "衢州高铁站3",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/gtz001.399866/tileset.json"
                        },
                        {
                          "id": "gtz4",
                          "name": "衢州高铁站4",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/gtz.399863/tileset.json"
                        },
                        {
                          "id": "gtz4",
                          "name": "衢州高铁站5",
                          "checked": false,
                          "sourceType": "b3dm",
                          "urls": "http://223.4.72.70:3868/SG/b3dm/CenterOffset.399864/tileset.json"
                        }
                      ]
                    }
                  ]
                },
                {
                  "id": "dianyunsanweimoxing",
                  "name": "点云三维模型",
                  "children": [
                    {
                      "id": "zhoushandianyun",
                      "name": "舟山",
                      "checked": false,
                      "//": "//",
                      "sourceType": "b3dm",
                      "urls": "http://223.4.72.70:3868/SG/pnts/H51G042036.399860/tileset.json"
                    }
                  ]
                },
                {
                  "id": "BIMsanweimoxing",
                  "name": "BIM三维模型",
                  "children": [
                    {
                      "id": "bim",
                      "name": "BIM模型",
                      "checked": false,
                      "//": "//",
                      "sourceType": "b3dm",
                      "urls": "http://223.4.72.70:3868/SG/b3dm/_养老院.397436/tileset.json"
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "id": "guotudiaocha",
          "name": "国土调查",
          "children": [
            {
              "id": "sandiaoshuju",
              "name": "三调数据",
              "children": [
                {
                  "id": "yhdltb",
                  "name": "地类图斑(余杭)",
                  "children": []
                },
                {
                  "id": "tldltb",
                  "name": "地类图斑(桐庐)",
                  "children": []
                },
                {
                  "id": "lhdltb",
                  "name": "地类图斑(临海)",
                  "children": []
                }
              ]
            },
            {
              "id": "yongjiujibennongtian",
              "name": "永久基本农田",
              "children": []
            }
          ]
        },
        {
          "id": "chengxiangjianshe",
          "name": "城乡建设",
          "children": []
        },
        {
          "id": "tudiziyuan",
          "name": "土地资源",
          "children": []
        },
        {
          "id": "kuangchanziyuan",
          "name": "矿产资源",
          "children": [
            {
              "id": "xckuangshan",
              "name": "新昌矿山",
              "children": []
            }
          ]
        },
        {
          "id": "senlinziyuan",
          "name": "森林资源",
          "children": []
        },
        {
          "id": "shidiziyuan",
          "name": "湿地资源",
          "children": []
        },
        {
          "id": "shuiziyuan",
          "name": "水资源",
          "children": []
        },
        {
          "id": "haiyang",
          "name": "海洋",
          "children": [
            {
              "id": "haidao",
              "name": "海岛",
              "children": [
                {
                  "id": "yuhuanxian",
                  "name": "2017年玉环县海岛海岸线调查数据",
                  "children": []
                }
              ]
            },
            {
              "id": "haianxianjiance",
              "name": "大陆海岸线监测",
              "children": [
                {
                  "id": "jcdc927",
                  "name": "927大陆海岸线调查数据",
                  "children": []
                },
                {
                  "id": "jcdc908",
                  "name": "908大陆海岸线调查数据",
                  "children": []
                },
                {
                  "id": "jcdc2007",
                  "name": "2007大陆海岸线监测数据",
                  "children": []
                },
                {
                  "id": "jcdc2011",
                  "name": "2011大陆海岸线监测数据",
                  "children": []
                },
                {
                  "id": "jcdc2014",
                  "name": "2014大陆海岸线监测数据",
                  "children": []
                },
                {
                  "id": "jcdc2016",
                  "name": "2016年玉环县大陆海岸线调查数据",
                  "children": []
                },
                {
                  "id": "jcdc2018",
                  "name": "2018年玉环县大陆海岸线监测数据",
                  "children": []
                }
              ]
            }
          ]
        },
        {
          "id": "qixiang",
          "name": "气象",
          "children": []
        },
        {
          "id": "dizhi",
          "name": "地质",
          "children": []
        },
        {
          "id": "fangzaijianzai",
          "name": "防灾减灾",
          "children": []
        },
        {
          "id": "shengtai",
          "name": "生态环境",
          "children": [
            {
              "id": "luyuhongxian",
              "name": "生态红线数据(陆域)",
              "children": []
            },
            {
              "id": "haiyuhongxian",
              "name": "生态红线数据(海域)",
              "children": []
            }
          ]
        }
      ]
    },
    {
      "id": "guihuashuju",
      "name": "规划数据",
      "children": [
        {
          "id": "yuanbumenguihua",
          "name": "原部门规划",
          "children": []
        },
        {
          "id": "zhanlueguihua",
          "name": "战略规划",
          "children": []
        },
        {
          "id": "zongtiguihua",
          "name": "总体规划",
          "children": []
        },
        {
          "id": "zhuanxiangguihua",
          "name": "专项规划",
          "children": []
        },
        {
          "id": "xiangxiguihua",
          "name": "详细规划",
          "children": [
            {
              "id": "qz1",
              "name": "衢州",
              "children": []
            },
            {
              "id": "kh1",
              "name": "开化",
              "children": [
                {
                  "id": "zg2",
                  "name": "总规",
                  "children": [
                    {
                      "id": "zonggui",
                      "name": "总规",
                      "checked": false,
                      "sourceType": "wms",
                      "urls": "http://223.4.72.70:3868/gisserver/wmsserver/khzg",
                      "layer": "",
                      "srs": "EPSG:4326",
                      "lon": "118.36893",
                      "lat": "29.283202",
                      "Level": 1
                    }
                  ]
                },
                {
                  "id": "kg2",
                  "name": "控规",
                  "children": [
                    {
                      "id": "konggui",
                      "name": "控规",
                      "checked": false,
                      "sourceType": "wms",
                      "urls": "http://223.4.72.70:3868/gisserver/wmsserver/khkg",
                      "layer": "",
                      "srs": "EPSG:4326",
                      "lon": "118.36893",
                      "lat": "29.283202",
                      "Level": 1
                    }
                  ]
                }
              ]
            },
            {
              "id": "fy1",
              "name": "富阳",
              "children": []
            },
            {
              "id": "wy1",
              "name": "武义",
              "children": []
            }
          ]
        }
      ]
    },
    {
      "id": "guanlishuju",
      "name": "管理数据",
      "children": [
        {
          "id": "ziranziyuanzichan",
          "name": "自然资源资产",
          "children": [
            {
              "id": "sfpb1",
              "name": "山峰瀑布"
            },
            {
              "id": "nlmy1",
              "name": "农林牧渔"
            }
          ]
        },
        {
          "id": "ziranziyuanquanyi",
          "name": "自然资源权益",
          "children": []
        },
        {
          "id": "budongchandengji",
          "name": "不动产登记",
          "children": []
        },
        {
          "id": "ziranziyuanquequandengji",
          "name": "自然资源确权登记",
          "children": [
            {
              "id": "sx1",
              "name": "水系"
            },
            {
              "id": "hp1",
              "name": "湖泊"
            },
            {
              "id": "hy1",
              "name": "海域"
            }
          ]
        },
        {
          "id": "ziranziyuankaifaliyong",
          "name": "自然资源开发利用",
          "children": []
        },
        {
          "id": "guotukongjianyongtuguanzhi",
          "name": "国土空间用途管制",
          "children": []
        },
        {
          "id": "gengdibaohu",
          "name": "耕地保护",
          "children": []
        },
        {
          "id": "guotukongjianshengtaixiufu",
          "name": "国土空间生态修复",
          "children": []
        },
        {
          "id": "zonghejiancejianguan",
          "name": "综合监测监管",
          "children": []
        },
        {
          "id": "zongheguanli",
          "name": "综合管理",
          "children": []
        }
      ]
    },
    {
      "id": "shehuijingji",
      "name": "社会经济",
      "children": [
        {
          "id": "shehuishuju",
          "name": "社会数据",
          "children": []
        },
        {
          "id": "jingjishuju",
          "name": "经济数据",
          "children": [
            {
              "id": "jrjg1",
              "name": "金融机构"
            }
          ]
        },
        {
          "id": "renkoushuju",
          "name": "人口数据",
          "children": []
        },
        {
          "id": "yuqingganzhishuju",
          "name": "舆情感知数据",
          "children": []
        }
      ]
    }
  ]
}