| | |
| | | /** |
| | | * 土壤及地下水 |
| | | */ |
| | | import { PIPELINE_WFS } from '../Constants' |
| | | const WFS_URL = PIPELINE_WFS |
| | | export const LayerSoilGroundWater = { |
| | | code: 'sewersSoilGroundWater', |
| | | name: '土壤及地下水', |
| | | checked: false, |
| | | type: 0, |
| | | layers: [ |
| | | { |
| | | code: 'soil', |
| | | name: '土壤', |
| | | sname: '土壤', // 表名 |
| | | checked: false, // 默认选中状态 |
| | | url: WFS_URL + '?TYPENAME=公司' |
| | | type: 0, |
| | | legendImage: '../.././assets/images/map-pages/xljt1.png' |
| | | }, |
| | | { |
| | | code: 'groundWater', |
| | | name: '地下水', |
| | | sname: '地下水', |
| | | checked: false, // 默认选中状态 |
| | | wfs: WFS_URL + '?TYPENAME=码头' |
| | | type: 0 |
| | | }, |
| | | { |
| | | code: 'firstRiskBlock', |
| | | name: '一级风险地块', |
| | | sname: '一级风险地块', |
| | | checked: false, // 默认选中状态 |
| | | wfs: WFS_URL + '?TYPENAME=装置区' |
| | | type: 0, |
| | | color: 'red' |
| | | }, |
| | | { |
| | | code: 'secondRiskBlock', |
| | | name: '二级风险地块', |
| | | sname: '二级风险地块', |
| | | checked: false, // 默认选中状态 |
| | | wfs: WFS_URL + '?TYPENAME=装置区' |
| | | type: 0, |
| | | color: 'yellow' |
| | | }, |
| | | { |
| | | code: 'threeRiskBlock', |
| | | name: '三级风险地块', |
| | | sname: '三级风险地块', |
| | | checked: false, // 默认选中状态 |
| | | wfs: WFS_URL + '?TYPENAME=装置区' |
| | | type: 0, |
| | | color: 'green' |
| | | } |
| | | ] |
| | | } |