派生自 wuyushui/SewerAndRainNetwork

wangqi
2021-04-14 d838248f54e3bcacf9c2a54f7dc692525af3c051
Merge remote-tracking branch 'origin/develop' into develop
1个文件已删除
11个文件已修改
566 ■■■■■ 已修改文件
src/components/helpers/WfsHelper.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/MapConfig.js 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerAirQuality.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerArea.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerBasin.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerEnvRisk.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerFsss.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerHbss.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerPipeLines.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerPk.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerSewers.js 523 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/conf/layers/LayerSoilGroundWater.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/helpers/WfsHelper.js
@@ -5,7 +5,7 @@
function WfsHelper () {
  this.filters = []
  this.typeNames = []
  this.url = MapConfig.BLUEMAP_HOST + '/server/ogcserver/PipeLine/wfs'
  this.url = MapConfig.PIPELINE_WFS
  this.params = {
    REQUEST: 'getfeature',
    OUTPUTFORMAT: 'JSON',
src/conf/MapConfig.js
@@ -11,7 +11,7 @@
// service主机配置
// const APP_GIS_HOST = 'http://xearth.cn:6299'
const APP_GIS_HOST = 'http://xearth.cn:8088'
const PIPELINE_WFS = APP_GIS_HOST + '/server/ogcserver/PipeLine2/wfs'
// 自定义主机配置
const BLUEMAP_HOST = APP_GIS_HOST // 公司发布的地图服务,用于测试的地址
@@ -80,7 +80,8 @@
  mapOptions,
  mapConfig,
  TokenConfig,
  BLUEMAP_HOST
  BLUEMAP_HOST,
  PIPELINE_WFS
  // mapTokenArray
  // MagicMaker
}
src/conf/layers/LayerAirQuality.js
@@ -1,8 +1,8 @@
/**
 * 区域
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerAirQuality = {
  code: 'sewersAirQuality',
  name: '空气质量',
src/conf/layers/LayerArea.js
@@ -1,8 +1,8 @@
/**
 * 区域
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerArea = {
  code: 'sewersArea',
  name: '区域信息',
src/conf/layers/LayerBasin.js
@@ -1,8 +1,8 @@
/**
 * 流域
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerBasin = {
  code: 'sewersBasin',
  name: '区域图层',
src/conf/layers/LayerEnvRisk.js
@@ -1,8 +1,8 @@
/**
 * 环境风险
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerEnvRisk = {
  code: 'sewersEnvRisk',
  name: '环境风险',
src/conf/layers/LayerFsss.js
@@ -1,8 +1,8 @@
/**
 * 区域
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine2/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerFsss = {
  code: 'sewersFsss',
  name: '附属设施',
src/conf/layers/LayerHbss.js
@@ -1,8 +1,8 @@
/**
 * 区域
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine2/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerHbss = {
  code: 'sewersHbss',
  name: '环保设施',
src/conf/layers/LayerPipeLines.js
@@ -4,8 +4,8 @@
import { LayerHbss } from './LayerHbss'
import { LayerFsss } from './LayerFsss'
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine2/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerPipeLines = {
  code: 'sewersPipeLines',
src/conf/layers/LayerPk.js
@@ -1,8 +1,8 @@
/**
 * 排口
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerPk = {
  code: 'sewersPk',
  name: '排口',
src/conf/layers/LayerSewers.js
File was deleted
src/conf/layers/LayerSoilGroundWater.js
@@ -1,8 +1,8 @@
/**
 * 土壤及地下水
 */
const APP_GIS_HOST_2 = 'http://xearth.cn:8088'
const WFS_URL = APP_GIS_HOST_2 + '/server/ogcserver/PipeLine/wfs'
import MapConfig from '../../conf/MapConfig'
const WFS_URL = MapConfig.PIPELINE_WFS
export const LayerSoilGroundWater = {
  code: 'sewersSoilGroundWater',
  name: '土壤及地下水',