lixuliang
2024-04-19 1fef6dcc04ffe09336e4983c2b05962ad901e545
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
{
    "name": "我的数据",
    "id": 1,
    "open": true,
    "children": [
        {
            "id": "yaoganYX",
            "name": "影像",
            "children": [
                {
                    "id": "AA",
                    "class": "imageLayer",
                    "name": "ArcGIS影像",
                    "sourceType": "arcgis",
                    "checked": true,
                    "urls": "https://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer",
                    "Level": 1,
                    "minimumLevel": 1,
                    "maximumLevel": 18,
                    "lon": 118.05,
                    "lat": 36.39,
                    "height": 5000000
                }
            ]
        },
        {
            "id": "swdx",
            "name": "地形",
            "children": []
        },
        {
            "id": "jianzhubaimo",
            "name": "模型",
            "children": [
                {
                    "id": "jinanbaimo1",
                    "name": "济南白模",
                    "checked": true,
                    "sourceType": "b3dm",
                    "urls": "http://183.162.245.49:8099/JiNanBM/tileset.json",
                    "modelHeight": 0
                }
            ]
        },
        {
            "id": "shilaingsanwei",
            "name": "矢量",
            "children": [
                {
                    "id": "sanweizhuji",
                    "name": "三维注记",
                    "children": [
                        {
                            "id": "xingzhengdiming",
                            "name": "行政地名",
                            "children": [
                                {
                                    "id": "ZJ3",
                                    "name": "地市",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:dishi",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ffffff",
                                    "text": "[NAME]",
                                    "image": "http://183.162.245.49:82/pic/地市级政府pic.png",
                                    "size": "bold 15px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 3,
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 2,
                                    "maximumLevel": 12,
                                    "minx": 115.64585926609739,
                                    "miny": 34.82725782758204,
                                    "maxx": 122.11395053813112,
                                    "maxy": 37.54216506996356
                                },
                                {
                                    "id": "ZJ51",
                                    "name": "地市线WMS",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://183.162.245.49:8099/geoserver/SHP/wms",
                                    "layer": "SHP:dishixian",
                                    "Level": "2,12",
                                    "lon": 118.05,
                                    "lat": 36.39,
                                    "height": 1000000
                                },
                                {
                                    "id": "ZJ6",
                                    "name": "县区",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:xianqu1",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ffffff",
                                    "text": "[NAME]",
                                    "image": "http://183.162.245.49:82/pic/县级政府.png",
                                    "size": "bold 12px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 3,
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 8,
                                    "maximumLevel": 14,
                                    "minx": 115.10182952441403,
                                    "miny": 34.56372900029402,
                                    "maxx": 122.48218000010797,
                                    "maxy": 37.92053499989123
                                },
                                {
                                    "id": "ZJ61",
                                    "name": "县区线WMS",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://183.162.245.49:8099/geoserver/SHP/wms",
                                    "layer": "SHP:xianquxian",
                                    "Level": "8,14",
                                    "lon": 118.05,
                                    "lat": 36.39,
                                    "height": 5000000
                                },
                                {
                                    "id": "ZJ5",
                                    "name": "乡镇街道办",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:xiangzhenjieban1",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ffffff",
                                    "text": "[NAME]",
                                    "image": "http://183.162.245.49:82/pic/乡级政府.png",
                                    "size": "bold 11px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 3,
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 13,
                                    "maximumLevel": 16,
                                    "minx": 114.94314500014275,
                                    "miny": 34.43922199989629,
                                    "maxx": 122.58186099958652,
                                    "maxy": 38.388086063721744
                                },
                                {
                                    "id": "ZJ2",
                                    "name": "村名",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:cun1",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ffffff",
                                    "text": "[NAME]",
                                    "image": "http://183.162.245.49:82/pic/村委会.png",
                                    "size": "bold 11px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 3,
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 15,
                                    "maximumLevel": 18,
                                    "minx": 114.8574272551648,
                                    "miny": 34.38595950872525,
                                    "maxx": 122.69174294877917,
                                    "maxy": 38.39409029473222
                                }
                            ]
                        },
                        {
                            "id": "ZRDM",
                            "name": "自然地名",
                            "children": [
                                {
                                    "id": "ZJ8",
                                    "name": "自然地名_其他地名",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:ZRDiMing",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ff8040",
                                    "text": "[NAME]",
                                    "size": "bold 18px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 2,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 12,
                                    "maximumLevel": 18,
                                    "minx": 115.3732611848568,
                                    "miny": 34.46864082231701,
                                    "maxx": 122.70575277826913,
                                    "maxy": 38.39981820184943
                                },
                                {
                                    "id": "ZJ9",
                                    "name": "自然地名_山峰",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:ShanTi",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ff8040",
                                    "text": "[NAME]",
                                    "image": "http://183.162.245.49:82/pic/7512020106山峰.png",
                                    "size": "bold 18px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 2,
                                    "pointHeight": 100,
                                    "heightReference": 2,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 13,
                                    "maximumLevel": 25,
                                    "minx": 117.08485804660646,
                                    "miny": 35.55560827700009,
                                    "maxx": 121.77001163200009,
                                    "maxy": 37.418862569000055
                                },
                                {
                                    "id": "ZJ10",
                                    "name": "自然地名_洞",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:Dong",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ff8040",
                                    "text": "[NAME]",
                                    "image": "http://183.162.245.49:82/pic/7512020106山峰.png",
                                    "size": "bold 18px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 2,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 13,
                                    "maximumLevel": 19,
                                    "minx": 117.08485804660646,
                                    "miny": 35.55560827700009,
                                    "maxx": 121.77001163200009,
                                    "maxy": 37.418862569000055
                                },
                                {
                                    "id": "ZJ11",
                                    "name": "自然地名_谷沟",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:GuGou",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ff8040",
                                    "text": "[NAME]",
                                    "image": "http://183.162.245.49:82/pic/7512020106山峰.png",
                                    "size": "bold 18px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 2,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 13,
                                    "maximumLevel": 19,
                                    "minx": 117.08485804660646,
                                    "miny": 35.55560827700009,
                                    "maxx": 121.77001163200009,
                                    "maxy": 37.418862569000055
                                },
                                {
                                    "id": "ZJ12",
                                    "name": "自然地名_水系",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:zirandiming_sx1",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#0080ff",
                                    "text": "[NAME]",
                                    "size": "bold 18px",
                                    "outlineColor": "#ffffff",
                                    "outlineWidth": 2,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 12,
                                    "maximumLevel": 18,
                                    "minx": 115.0880140662972,
                                    "miny": 34.43599256770375,
                                    "maxx": 122.61563819474793,
                                    "maxy": 38.10854560040002
                                },
                                {
                                    "id": "ZJ13",
                                    "name": "自然地名_重要水系",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:zirandiming_zysx",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#0080ff",
                                    "text": "[NAME]",
                                    "size": "bold 18px",
                                    "outlineColor": "#ffffff",
                                    "outlineWidth": 2,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 12,
                                    "maximumLevel": 18,
                                    "minx": 116.20201415572888,
                                    "miny": 34.617215384882286,
                                    "maxx": 122.4221846543985,
                                    "maxy": 37.52075170672606
                                },
                                {
                                    "id": "ZJ14",
                                    "name": "自然地名_泉",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:Quan",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#0080ff",
                                    "text": "[NAME]",
                                    "size": "bold 18px",
                                    "outlineColor": "#ffffff",
                                    "outlineWidth": 2,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 12,
                                    "maximumLevel": 18,
                                    "minx": 116.20201415572888,
                                    "miny": 34.617215384882286,
                                    "maxx": 122.4221846543985,
                                    "maxy": 37.52075170672606
                                },
                                {
                                    "id": "ZJ15",
                                    "name": "自然地名_岛屿",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:DaoYu",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#0080ff",
                                    "text": "[NAME]",
                                    "size": "bold 18px",
                                    "outlineColor": "#ffffff",
                                    "outlineWidth": 2,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 12,
                                    "maximumLevel": 18,
                                    "minx": 116.20201415572888,
                                    "miny": 34.617215384882286,
                                    "maxx": 122.4221846543985,
                                    "maxy": 37.52075170672606
                                }
                            ]
                        },
                        {
                            "id": "jiaotongluwang",
                            "name": "交通路网",
                            "children": [
                                {
                                    "id": "guodaowms",
                                    "name": "国道_wms",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://183.162.245.49:8099/geoserver/SHP/wms",
                                    "layer": "SHP:guodao1",
                                    "Level": "6,16",
                                    "lon": 118.05,
                                    "lat": 36.39,
                                    "height": 5000000
                                },
                                {
                                    "id": "shengdaowms",
                                    "name": "省道_wms",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://183.162.245.49:8099/geoserver/SHP/wms",
                                    "layer": "SHP:shengdao1",
                                    "Level": "7,17",
                                    "lon": 118.05,
                                    "lat": 36.39,
                                    "height": 5000000
                                },
                                {
                                    "id": "tieluwms",
                                    "name": "铁路-wms",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://183.162.245.49:8099/geoserver/SHP/wms",
                                    "layer": "SHP:tielu1",
                                    "Level": "8,14",
                                    "lon": 118.05,
                                    "lat": 36.39,
                                    "height": 5000000
                                },
                                {
                                    "id": "ZJ12wms",
                                    "name": "道路—wms",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://183.162.245.49:8099/geoserver/SHP/wms",
                                    "layer": "SHP:roads",
                                    "Level": "15,20",
                                    "lon": 118.05,
                                    "lat": 36.39,
                                    "height": 5000000
                                },
                                {
                                    "id": "guodao",
                                    "name": "国道",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:guodao1",
                                    "class": "polyline",
                                    "srs": "EPSG:4326",
                                    "color": "#c995ff",
                                    "width": 2,
                                    "outlineColor": "#c995ff",
                                    "outlineWidth": 1,
                                    "minimumLevel": 3,
                                    "maximumLevel": 12,
                                    "minx": 114.96220908100008,
                                    "miny": 34.42276052600005,
                                    "maxx": 122.62859506500003,
                                    "maxy": 38.17882096500008
                                },
                                {
                                    "id": "guodao1",
                                    "name": "国道1",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:guodao1",
                                    "class": "polyline",
                                    "srs": "EPSG:4326",
                                    "color": "#ffc14250",
                                    "width": 20,
                                    "outlineColor": "#d68244",
                                    "outlineWidth": 10,
                                    "minimumLevel": 12,
                                    "maximumLevel": 16,
                                    "minx": 114.96220908100008,
                                    "miny": 34.42276052600005,
                                    "maxx": 122.62859506500003,
                                    "maxy": 38.17882096500008
                                },
                                {
                                    "id": "shengdao",
                                    "name": "省道",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:shengdao1",
                                    "class": "polyline",
                                    "srs": "EPSG:4326",
                                    "color": "#ffd361",
                                    "width": 2,
                                    "outlineColor": "#ffd361",
                                    "outlineWidth": 2,
                                    "minimumLevel": 6,
                                    "maximumLevel": 13,
                                    "minx": 114.82213013800003,
                                    "miny": 34.463571486000035,
                                    "maxx": 122.69506839500006,
                                    "maxy": 38.26698318200003
                                },
                                {
                                    "id": "shengdao1",
                                    "name": "省道1",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:shengdao1",
                                    "class": "polyline",
                                    "srs": "EPSG:4326",
                                    "color": "#ffed5d80",
                                    "width": 15,
                                    "outlineColor": "#d3a03f",
                                    "outlineWidth": 10,
                                    "minimumLevel": 13,
                                    "maximumLevel": 16,
                                    "minx": 114.82213013800003,
                                    "miny": 34.463571486000035,
                                    "maxx": 122.69506839500006,
                                    "maxy": 38.26698318200003
                                },
                                {
                                    "id": "tielu",
                                    "name": "铁路",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:tielu1",
                                    "class": "polyline",
                                    "srs": "EPSG:4326",
                                    "color": "#00000070",
                                    "width": 4,
                                    "outlineColor": "#ffffff",
                                    "outlineWidth": 2,
                                    "minimumLevel": 8,
                                    "maximumLevel": 12,
                                    "minx": 114.96873757600008,
                                    "miny": 34.38071438700007,
                                    "maxx": 122.40295900800007,
                                    "maxy": 37.68485558700006
                                },
                                {
                                    "id": "ZJ12",
                                    "name": "道路",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:roads",
                                    "class": "polyline",
                                    "srs": "EPSG:4326",
                                    "color": "#ffffff50",
                                    "width": 10,
                                    "outlineColor": "#dbd28e",
                                    "outlineWidth": 5,
                                    "minimumLevel": 14,
                                    "maximumLevel": 18,
                                    "minx": 116.877591746662,
                                    "miny": 35.13999767994915,
                                    "maxx": 121.84749078836931,
                                    "maxy": 37.32828215150023
                                }
                            ]
                        },
                        {
                            "id": "xingqudianwei",
                            "name": "兴趣点位",
                            "children": [
                                {
                                    "id": "ZJ1",
                                    "name": "兴趣点",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:POI",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ff0000",
                                    "text": "[NAME]",
                                    "size": "bold 18px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 3,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 16,
                                    "maximumLevel": 18,
                                    "minx": 114.93424673190225,
                                    "miny": 34.42233554225237,
                                    "maxx": 122.69221150006172,
                                    "maxy": 38.09172411157937
                                },
                                {
                                    "id": "ZJ4",
                                    "name": "机关单位",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:jiguandanwei",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ff0000",
                                    "text": "[NAME]",
                                    "size": "bold 18px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 3,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 16,
                                    "maximumLevel": 18,
                                    "minx": 114.94314500014275,
                                    "miny": 34.43922199989629,
                                    "maxx": 122.58186099958652,
                                    "maxy": 38.388086063721744
                                },
                                {
                                    "id": "ZJ7",
                                    "name": "政府机关",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:zhengfujiguan1",
                                    "class": "label",
                                    "srs": "EPSG:4326",
                                    "color": "#ff0000",
                                    "text": "[NAME]",
                                    "size": "bold 18px",
                                    "outlineColor": "#000000",
                                    "outlineWidth": 3,
                                    "showBackground": false,
                                    "backgroundColor": "#ffffff",
                                    "disableDepthTestDistance": "Infinity",
                                    "minimumLevel": 16,
                                    "maximumLevel": 18,
                                    "minx": 115.06760973959888,
                                    "miny": 34.52138600006475,
                                    "maxx": 122.54433800039942,
                                    "maxy": 38.10449417616621
                                }
                            ]
                        },
                        {
                            "id": "qukuaisj",
                            "name": "面状数据",
                            "children": [
                                {
                                    "id": "DK1",
                                    "name": "地块数据",
                                    "checked": false,
                                    "sourceType": "vector",
                                    "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                                    "layer": "SHP:dikuai",
                                    "class": "polygon",
                                    "srs": "EPSG:4326",
                                    "color": "#ffad8670",
                                    "clampToGround": true,
                                    "minimumLevel": 12,
                                    "maximumLevel": 20,
                                    "minx": 114.80586681460284,
                                    "miny": 34.4013978923997,
                                    "maxx": 122.60885941722938,
                                    "maxy": 38.15683937234007
                                },
                                {
                                    "id": "DK2",
                                    "name": "地块数据-wms",
                                    "checked": false,
                                    "sourceType": "wms",
                                    "urls": "http://183.162.245.49:8099/geoserver/SHP/wms",
                                    "layer": "SHP:dikuai",
                                    "Level": "13,20"
                                }
                            ]
                        }
                    ]
                },
                {
                    "id": "QGZJD",
                    "name": "全国注记点",
                    "children": [
                        {
                            "id": "SD1",
                            "name": "省点",
                            "checked": false,
                            "sourceType": "vector",
                            "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                            "layer": "QGZJ:sheng",
                            "class": "label",
                            "srs": "EPSG:4326",
                            "color": "#ffffff",
                            "text": "[name]",
                            "size": "15px",
                            "outlineColor": "#000000",
                            "outlineWidth": 4,
                            "disableDepthTestDistance": "Infinity",
                            "minimumLevel": 3,
                            "maximumLevel": 4,
                            "minx": 87.57610581400151,
                            "miny": 19.97015545046543,
                            "maxx": 126.56611953177881,
                            "maxy": 45.6934683793407
                        },
                        {
                            "id": "SHD1",
                            "name": "省会点",
                            "checked": false,
                            "sourceType": "vector",
                            "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                            "layer": "QGZJ:shenghui",
                            "class": "label",
                            "srs": "EPSG:4326",
                            "color": "#ffffff",
                            "text": "[name]",
                            "size": "15px",
                            "outlineColor": "#000000",
                            "outlineWidth": 4,
                            "disableDepthTestDistance": "Infinity",
                            "minimumLevel": 4,
                            "maximumLevel": 6,
                            "minx": 75.88693067576526,
                            "miny": 18.39159431546135,
                            "maxx": 132.51607069978945,
                            "maxy": 52.32476144369692
                        },
                        {
                            "id": "ShiD1",
                            "name": "市点",
                            "checked": false,
                            "sourceType": "vector",
                            "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                            "layer": "QGZJ:shi",
                            "class": "label",
                            "srs": "EPSG:4326",
                            "color": "#ffffff",
                            "text": "[name]",
                            "size": "15px",
                            "outlineColor": "#000000",
                            "outlineWidth": 4,
                            "disableDepthTestDistance": "Infinity",
                            "minimumLevel": 6,
                            "maximumLevel": 7,
                            "minx": 75.88693067576526,
                            "miny": 18.39159431546135,
                            "maxx": 132.51607069978945,
                            "maxy": 52.32476144369692
                        },
                        {
                            "id": "XianD1",
                            "name": "县点",
                            "checked": false,
                            "sourceType": "vector",
                            "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                            "layer": "QGZJ:xian",
                            "class": "label",
                            "srs": "EPSG:4326",
                            "color": "#ffffff",
                            "text": "[name]",
                            "size": "15px",
                            "outlineColor": "#000000",
                            "outlineWidth": 4,
                            "disableDepthTestDistance": "Infinity",
                            "minimumLevel": 7,
                            "maximumLevel": 10,
                            "minx": 75.18720200306036,
                            "miny": 18.237933465971842,
                            "maxx": 134.2790399959261,
                            "maxy": 52.96889538237352
                        },
                        {
                            "id": "ZheD",
                            "name": "乡镇点",
                            "checked": false,
                            "sourceType": "vector",
                            "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                            "layer": "QGZJ:xiangzhen",
                            "class": "label",
                            "srs": "EPSG:4326",
                            "color": "#ffffff",
                            "text": "[name]",
                            "size": "15px",
                            "outlineColor": "#000000",
                            "outlineWidth": 4,
                            "disableDepthTestDistance": "Infinity",
                            "minimumLevel": 10,
                            "maximumLevel": 11,
                            "minx": 74.1034493,
                            "miny": 18.2843691,
                            "maxx": 134.757874,
                            "maxy": 53.4802483
                        },
                        {
                            "id": "CunD",
                            "name": "村庄点",
                            "checked": false,
                            "sourceType": "vector",
                            "urls": "http://183.162.245.49:8099/geoserver/gwc/service/wmts",
                            "layer": "QGZJ:cunzhuang",
                            "class": "label",
                            "srs": "EPSG:4326",
                            "color": "#ffffff",
                            "text": "[name]",
                            "size": "15px",
                            "outlineColor": "#000000",
                            "outlineWidth": 4,
                            "disableDepthTestDistance": "Infinity",
                            "minimumLevel": 11,
                            "maximumLevel": 17,
                            "minx": 73.9734715,
                            "miny": 18.3804961,
                            "maxx": 134.6479414,
                            "maxy": 53.5021179
                        }
                    ]
                }
            ]
        }
    ],
    "flyTo": [
        "117.738326",
        "36.022738",
        "2930022.29",
        360,
        -89.84713391856356
    ]
}