1234567891011121314151617181920212223242526272829303132333435 |
- /* eslint-disable no-unused-vars */
- var systemConfig = {
- currentEnvir: "qp",
- // oauth地址
- // oauthServiceUrl: "http://121.43.55.7:10086/oauth",
- oauthServiceUrl: "http://10.235.245.174:8888/oauth",
- mapDefault: {
- center: {
- lng: 116.334228,
- lat: 39.072511
- },
- zoom: 14
- },
- raster: 'http://t{0-7}.tianditu.gov.cn/img_w/wmts?tk=e90d56e5a09d1767899ad45846b0cefd&LAYER=img&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&STYLE=default&TILEMATRIXSET=w&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&FORMAT=tiles',
- raster_annotation: "http://t{0-7}.tianditu.gov.cn/cia_w/wmts?tk=e90d56e5a09d1767899ad45846b0cefd&LAYER=cia&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&STYLE=default&TILEMATRIXSET=w&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&FORMAT=tiles",
- national_boundary: 'http://t{0-7}.tianditu.gov.cn/ibo_w/wmts?tk=e90d56e5a09d1767899ad45846b0cefd&LAYER=ibo&SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&STYLE=default&TILEMATRIXSET=w&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&FORMAT=tiles',
- jumpUrl: null,
- jumpUrlConfig: {
- qp: {
- // 三维场景发布与浏览
- threeSceneViewUrl: "http://10.235.245.174:2105/",
- // 三维场景搭建
- threeSceneBuildUrl: "http://10.235.245.174:2110/",
- },
- aly: {
- // 三维场景发布与浏览
- threeSceneViewUrl: "http://121.43.55.7:2102",
- // 三维场景搭建
- threeSceneBuildUrl: "http://121.43.55.7:2106",
- }
- },
- }
- systemConfig.jumpUrl = systemConfig.jumpUrlConfig[systemConfig.currentEnvir]
|