1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| /**
| * 区域
| */
| import { LayerWasteWater } from './layers/LayerWasteWater'
| import { LayerWasteGas } from './layers/LayerWasteGas'
| import { LayerWasteSolid } from './layers/LayerWasteSolid'
| import { LayerAirQuality } from './layers/LayerAirQuality'
| import { LayerEnvRisk } from './layers/LayerEnvRisk'
| import { LayerSoilGroundWater } from './layers/LayerSoilGroundWater'
|
| export const LayerTopic = {
| code: 'sewersTopic',
| name: '专题图层',
| checked: true,
| layers: [LayerWasteWater, LayerWasteGas, LayerWasteSolid, LayerAirQuality, LayerEnvRisk, LayerSoilGroundWater]
| }
|
|