1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| //是否为生产环境
| const isWeb = false;
| //是否为生产环境
| const webUrl = isWeb ? "/web" : "";
| //配置文件地址
| const config = {
| mapMoon: webUrl + "/mapscreen/index.html",
| //椭球体初始化加载图片
| imgUrl: "Workers/image/earth.jpg",
| //license许可
| licenseServer: "http://183.162.245.49:18080",
| //SDK许可
| StaticFileBaseUrl: webUrl + "/CIMSDK/",
| //tmsserver
| moonTms: "/TMS",
| //Wmtsserver
| moonWmts:
| "http://172.16.2.10:50001/sj_raster/v6/wmts/service/system/10000201/3?ak=mf72ff9295c740ec0f37e61433e8a3ad8d&srs=ESRI:104903",
|
| //地形
| moonTerrain: "http://172.16.2.10:50001/sj_raster/v6/terrain_mesh/10013901/45",
|
| conditions: [
| ["=", "<>", "like"],
| [">=", ">", " =", "<=", "<", "<>"],
| [">=", ">", " =", "<=", "<", "<>"],
| ],
| };
| export default config;
|
|