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
| import { SERVICE_TYPE } from '../Constants'
|
| /**
| * 周边环境
| */
| export const LayerSurroundings = {
| code: 'sewersSurroundings',
| name: '周边环境',
| checked: false,
| layers: [
| {
| code: 'sewersYy',
| name: '医院',
| sname: '医院',
| checked: false,
| type: SERVICE_TYPE.WMS,
| icon: 'sewers/医院.png',
| typeName: 'sewer:hospital',
| minZoom: 10 // 在指定级别显示
| },
| {
| code: 'sewersXx',
| name: '学校',
| sname: '学校',
| icon: 'sewers/学校.png',
| checked: false, // 默认选中状态
| type: SERVICE_TYPE.WMS,
| minZoom: 10
| },
| {
| code: 'sewersSt',
| name: '水体',
| sname: '水体',
| icon: 'sewers/水体.png',
| checked: false, // 默认选中状态
| type: SERVICE_TYPE.WMS,
| typeName: 'sewer:pointhydrology',
| minZoom: 10
| },
| {
| code: 'sewersZrbhq',
| name: '自然保护区',
| sname: '自然保护区',
| icon: 'sewers/自然保护区.png',
| checked: false, // 默认选中状态
| type: SERVICE_TYPE.WMS,
| wfs: 'sewer:pointpreservationzone',
| minZoom: 10
| },
| {
| code: 'sewersMgmb',
| name: '敏感目标',
| sname: '敏感目标',
| icon: 'sewers/敏感目标.png',
| checked: false, // 默认选中状态
| type: SERVICE_TYPE.WMS,
| wfs: 'sewer:sensitivetarget',
| minZoom: 10
| }
| ]
| }
|
|