派生自 wuyushui/SewerAndRainNetwork

YANGDL
2021-03-02 d9b1333d9c1749d9d81e7b6f8506abc14b6f164c
Merge remote-tracking branch 'origin/master'
2个文件已修改
17 ■■■■■ 已修改文件
src/components/helpers/ServiceLayerHelper.js 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/helpers/WfsHelper.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/helpers/ServiceLayerHelper.js
@@ -70,6 +70,11 @@
    }
  }
  /**
   * 请求wfs数据
   * @param url
   * @param item
   */
  loadGeojsonLayer (url, item) {
    var matches = this.regex.exec(url)
    var matchValue = item[matches[1]]
@@ -86,12 +91,12 @@
  }
  /**
     * 加载点数据
     * @param res
     */
  loadGeojson (res, layer) {
   * 加载gis server返回的geoson数据到地图中展示
   * @param res
   */
  loadGeojson (res, opt) {
    var that = this
    var icon = layer.icon
    var icon = opt.icon
    const featureGroup = that.L.featureGroup().addTo(that.map)
    const geojson = that.L.geoJSON(res.features, {
      style: function (feature) {
src/components/helpers/WfsHelper.js
@@ -23,7 +23,7 @@
  }
  this.addLike = (property, literal) => {
    var filter = '<PropertyIsLike><PropertyName>' + property + '</PropertyName><Literal>' + literal + '</Literal></PropertyIsLike>'
    var filter = '<PropertyIsLike><PropertyName>' + property + '</PropertyName><Literal>*' + literal + '*</Literal></PropertyIsLike>'
    this.filters.push(filter)
  }