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
| /**
| * 污染源
| * @type {string}
| */
| export const LayerPollutionSources = {
| code: 'pollutionSources',
| name: '污染源',
| checked: false,
| type: 0,
| layers: [
| {
| code: 'pollutionSourcesSczz',
| name: '生产装置',
| sname: '生产装置', // 表名
| checked: false, // 默认选中状态
| type: 0,
| url: 'http://www.baidu.com', // 请求业务数据接口
| minZoom: 10 // 在指定级别显示
| },
| {
| code: 'pollutionSourcesZlss',
| name: '治理设施',
| sname: '治理设施', // 表名
| checked: false, // 默认选中状态
| type: 0,
| url: 'http://www.baidu.com', // 请求业务数据接口
| minZoom: 10 // 在指定级别显示
| }]
| }
|
|