派生自 wuyushui/SewerAndRainNetwork

zhangshuaibao
2021-04-12 c77abda3614ba5c0a317b92eef29edbb39501d8f
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
/**
 * 废水图层
 * @type {string}
 */
export const LayerWasteWater = {
  code: 'wasteWater',
  name: '废水',
  checked: true,
  layers: [
    {
      code: 'wasteWaterPfk',
      name: '排放口',
      sname: '排放口', // 表名
      checked: true, // 默认选中状态
      url: 'http://www.baidu.com', // 请求业务数据接口
      minZoom: 10 // 在指定级别显示
    },
    {
      code: 'wasteWaterJcd',
      name: '流量',
      sname: '流量',
      checked: true, // 默认选中状态
      url: 'http://www.baidu2.com',
      minZoom: 10
    },
    {
      code: 'wasteWaterfk',
      name: '液位',
      sname: '液位',
      checked: true, // 默认选中状态
      url: '',
      minZoom: 10
    }
  ]
}