Merge remote-tracking branch 'origin/develop' into develop
| | |
| | | REQUEST: 'getfeature', |
| | | OUTPUTFORMAT: 'application/json', |
| | | maxFeatures: 10, |
| | | version: '1.0.0', |
| | | startIndex: 0 |
| | | version: '1.0.0' |
| | | } |
| | | |
| | | this.setTypeName = (typeName) => { |
| | |
| | | import { LayerTopic } from './LayerTopic' |
| | | import { LayerBasin } from './layers/LayerBasin' |
| | | import { LayerEmergency } from './LayerEmergency' |
| | | import { LayerPlate } from './layers/LayerPlate' |
| | | |
| | | const curWwwPath = window.document.location.href |
| | | const pathname = window.document.location.pathname |
| | |
| | | IntranetBaseMaps: TDT.intranet, |
| | | InternetBaseMaps: TDT.internet, |
| | | Layers: { |
| | | LayerSewersLine: [LayerBasin, LayerTopic, LayerEmergency] |
| | | LayerSewersLine: [LayerBasin, LayerPlate, LayerTopic, LayerEmergency] |
| | | } // 污雨水图层配置 |
| | | } |
| | | |
New file |
| | |
| | | /** |
| | | * 板块 |
| | | */ |
| | | import { PIPELINE_WFS } from '../Constants' |
| | | const WFS_URL = PIPELINE_WFS |
| | | export const LayerPlate = { |
| | | code: 'sewersPlate', |
| | | name: '板块图层', |
| | | checked: true, |
| | | isShow: true, |
| | | type: 2, |
| | | layers: [ |
| | | { |
| | | code: 'plateYt', |
| | | name: '油田', |
| | | sname: '油田', // 表名 |
| | | checked: true, // 默认选中状态 |
| | | type: 2, |
| | | url: WFS_URL + '?TYPENAME=公司' |
| | | }, |
| | | { |
| | | code: 'plateLh', |
| | | name: '炼化', |
| | | sname: '炼化', |
| | | checked: true, // 默认选中状态 |
| | | type: 2, |
| | | wfs: WFS_URL + '?TYPENAME=码头' |
| | | }, |
| | | { |
| | | code: 'plateXs', |
| | | name: '销售', |
| | | sname: '销售', |
| | | checked: true, // 默认选中状态 |
| | | type: 2, |
| | | wfs: WFS_URL + '?TYPENAME=装置区' |
| | | }, |
| | | { |
| | | code: 'plateHg', |
| | | name: '化工', |
| | | sname: '化工', |
| | | checked: true, // 默认选中状态 |
| | | type: 2, |
| | | wfs: WFS_URL + '?TYPENAME=装置区' |
| | | }, |
| | | { |
| | | code: 'plateZy', |
| | | name: '专业公司', |
| | | sname: '专业公司科研机构', |
| | | checked: true, // 默认选中状态 |
| | | type: 2, |
| | | wfs: WFS_URL + '?TYPENAME=装置区' |
| | | }, |
| | | { |
| | | code: 'plateKyjg', |
| | | name: '科研机构', |
| | | sname: '科研机构', |
| | | checked: true, // 默认选中状态 |
| | | type: 2, |
| | | wfs: WFS_URL + '?TYPENAME=装置区' |
| | | }, |
| | | { |
| | | code: 'plateGcdw', |
| | | name: '工程单位', |
| | | sname: '工程单位', |
| | | checked: true, // 默认选中状态 |
| | | type: 2, |
| | | wfs: WFS_URL + '?TYPENAME=装置区' |
| | | } |
| | | ] |
| | | } |