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
| /**
| * 区域
| */
| import { SERVICE_TYPE, PIPELINE_WFS } from '../Constants'
| const WFS_URL = PIPELINE_WFS
| export const LayerArea = {
| code: 'sewersArea',
| name: '区域信息',
| checked: false,
| type: 0,
| layers: [
| {
| code: 'sewersAreaGs',
| name: '公司',
| sname: '公司', // 表名
| checked: true, // 默认选中状态
| type: 0,
| url: WFS_URL + '?TYPENAME=公司',
| legendImage: '../.././assets/images/map/company_refining.png'
| },
| {
| code: 'sewersAreaMt',
| name: '码头',
| sname: '码头',
| checked: false, // 默认选中状态
| type: 0,
| wfs: WFS_URL + '?TYPENAME=码头',
| legendImage: '../.././assets/images/map/sewers/码头.png'
| },
| {
| code: 'sewersAreaZz',
| name: '装置区',
| sname: '装置区',
| checked: false, // 默认选中状态
| type: SERVICE_TYPE.WMS,
| typeName: 'sewer:unitareaboundary'
| }
| ]
| }
|
|