/** * 废水图层 * @type {string} */ export const LayerWasteWater = { code: 'wasteWater', name: '废水', checked: true, layers: [ { code: 'fsqy', name: '企业', sname: '企业', // 表名 checked: true, // 默认选中状态 url: 'http://www.baidu.com', // 请求业务数据接口 minZoom: 10 // 在指定级别显示 }, { code: 'wasteWaterJcd', name: '监测点', sname: '监测点', checked: true, // 默认选中状态 url: 'http://www.baidu2.com', minZoom: 10, childLayer: 'fsss,hbss' // 关联PointLayers }, { code: 'fspfk', name: '排放口', sname: '排放口', checked: true, // 默认选中状态 url: '', minZoom: 10, childLayer: 'fsss,hbss' // 关联PointLayers } ] }