123456789101112131415161718192021222324252627282930313233 |
- # just a flag
- ENV = 'production'
- # base api
- VUE_APP_BASE_API = '/api/'
- #高德地图API—KEY
- VUE_APP_AMAP_KEY = 7a6db58e92f9271f0f7c159871eb3a5e
- #天地图TOKEN
- VUE_APP_TDT_TOKEN = b4513f9270169f4d38d5f516e783ba19
- #天地图底图瓦片
- VUE_APP_TDT_BOTTOM_URL = 'https://t0.tianditu.gov.cn/DataServer?T=img_w&x={x}&y={y}&l={z}&tk='
- #天地图路网标记图层
- VUE_APP_TDT_BOTTOM_MARK_URL = 'https://t0.tianditu.gov.cn/DataServer?T=img_w&x={x}&y={y}&l={z}&tk='
- #Geoserver服务地址
- VUE_APP_GEO_SERVER_BASE_URL = 'http://47.108.172.52:9811/geoserver/'
- #Geoserver服务 住宅 工作空间
- VUE_APP_GEO_SERVER_HOUSE_SUFFIX = -house/wms?service=WMS
- #Geoserver服务 工业 工作空间
- VUE_APP_GEO_SERVER_FACTORY_SUFFIX = -factory/wms?service=WMS
- #Geoserver服务 公服 工作空间
- VUE_APP_GEO_SERVER_COMMON_SUFFIX = -common/wms?service=WMS
- #Geoserver服务 商服 工作空间
- VUE_APP_GEO_SERVER_BUSINESS_SUFFIX = -business/wms?service=WMS
|