| | |
| | | /** |
| | | * 加载WMS,拼接FILTER,LAYERS参数等 |
| | | */ |
| | | import MapConfig from '../../conf/MapConfig' |
| | | import { PIPELINE_WFS } from '../../conf/Constants' |
| | | function WfsHelper () { |
| | | this.filters = [] |
| | | this.typeNames = [] |
| | | this.url = MapConfig.PIPELINE_WFS |
| | | this.url = PIPELINE_WFS |
| | | this.params = { |
| | | REQUEST: 'getfeature', |
| | | OUTPUTFORMAT: 'JSON', |
| | |
| | | } |
| | | |
| | | this.addLike = (property, literal) => { |
| | | if (property && literal) { |
| | | var filter = '<PropertyIsLike><PropertyName>' + property + '</PropertyName><Literal>*' + literal + '*</Literal></PropertyIsLike>' |
| | | this.filters.push(filter) |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 得到filter参数值 |