1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /**
| * 区域
| */
| import { PIPELINE_WFS } from '../Constants'
| const WFS_URL = PIPELINE_WFS
| export const LayerAirQuality = {
| code: 'sewersAirQuality',
| name: '空气质量',
| checked: false,
| type: 0,
| layers: [
| {
| code: 'airQualityStation',
| name: '监测站',
| sname: '监测站', // 表名
| checked: false, // 默认选中状态
| type: 0,
| url: WFS_URL + '?TYPENAME=公司'
| }
| ]
| }
|
|