派生自 wuyushui/SewerAndRainNetwork

徐旺旺
2021-03-02 9760171bc3d60cc981c71953bcafec8998fc7622
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)
    that.L.geoJSON(res.features, {
      style: function (feature) {
@@ -118,7 +123,7 @@
          })
      }
    }).bindPopup(function (layer) {
      that.popupComp.setDatas(layer.feature)
      that.popupComp.setDatas(layer)
      that.popupComp.setShow()
      return that.popupComp.$el
    }, {