/** * 废气图层 * @type {string} */ export const LayerWasteGas = { code: 'wasteGas', name: '废气', checked: true, layers: [ { code: 'wasteGasPfk', name: '排放口', sname: '排放口', // 表名 checked: true, // 默认选中状态 url: 'http://www.baidu.com', // 请求业务数据接口 minZoom: 10 // 在指定级别显示 }, { code: 'wasteGasKrq', name: '可燃气', sname: '可燃气', checked: true, // 默认选中状态 url: '', minZoom: 10 }, { code: 'wasteGasYhq', name: '有害气', sname: '有害气', checked: true, // 默认选中状态 url: '', minZoom: 10 }, { code: 'wasteGasVocs', name: 'VOCs', sname: 'VOCs', checked: true, // 默认选中状态 url: '', minZoom: 10 } ] }