派生自 wuyushui/SewerAndRainNetwork

zhangshuaibao
2021-04-15 c169ee517f0620f86689ea08db5e3e24f01446bc
src/conf/layers/LayerAirQuality.js
@@ -1,20 +1,19 @@
/**
 * 区域
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine/wfs'
import { PIPELINE_WFS } from '../Constants'
const WFS_URL = PIPELINE_WFS
export const LayerAirQuality = {
  code: 'sewersAirQuality',
  name: '空气质量',
  checked: true,
  checked: false,
  layers: [
    {
      code: 'airQualityStation',
      name: '监测站',
      sname: '监测站', // 表名
      checked: true, // 默认选中状态
      url: WFS_URL + '?TYPENAME=公司',
      minZoom: 10
      checked: false, // 默认选中状态
      url: WFS_URL + '?TYPENAME=公司'
    }
  ]
}