config.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /**
  2. * @fileoverview 应用配置文件
  3. * @version 1.0.8
  4. */
  5. /**
  6. * 版本号
  7. */
  8. var onemapVersion = '1.2.2'; //+'-'+(new Date()).getTime();
  9. /**
  10. * map引擎配置
  11. */
  12. var map23DConfig = {
  13. //2D地图最小缩放等级
  14. map2DMinZoom: 2,
  15. //2D地图最大缩放等级
  16. map2DMaxZoom: 19,
  17. //3D瓦片图片类型
  18. imageType: 'png',
  19. //3D瓦片范围
  20. layerBounds: [
  21. [90, -180],
  22. [-90, 180]
  23. ], //左上角 右下角,
  24. //23D资源文件
  25. map23DAssetsUrl: 'http://localhost:10152', //+ 文件名
  26. //图层最大数量限制
  27. layerMaxLength: 10,
  28. //网络类型1:离线,2:在线
  29. netType: 2,
  30. atlas: true, //海量地图库
  31. sanweiMenu: true, //三维场景
  32. clockLocal: true, //是否用本地时间
  33. };
  34. /**
  35. * 应用Url配置
  36. * @type {Object}
  37. */
  38. var onemapUrlConfig = {
  39. //域名
  40. siteUrl: 'http://localhost:10152',
  41. //系统名称
  42. //systemName: '全息地理信息系统',
  43. systemName: '大数据可视化平台',
  44. //系统logo
  45. systemLogoUrl: 'http://localhost:10152/images/layout/logo-offline.png',
  46. //版权
  47. systemCopy: '-',
  48. //默认全局设置
  49. defaultGlobalSettingData: {
  50. "baseMap2D": {
  51. "center": {
  52. "lat": 39.9,
  53. "lng": 116.37
  54. },
  55. "type": 2,
  56. "zoom": 4
  57. },
  58. "map2DThematicSetting": [],
  59. "map2DThematicCategory": [],
  60. "baseMap3D": {
  61. "map3DDEM": "http://mt.mapplus.cn/v1.0/dem?z=%d&x=%d&y=%d",
  62. "map3DName": "http://119.3.233.75:5050/v1.0/name?x={x}&y={y}&z={z}"
  63. },
  64. "map3DModelSettingCategory": [],
  65. "map3DModelSetting": [
  66. {
  67. "category":"倾斜摄影",
  68. "info":"",
  69. "type":"qxData",
  70. "name":"蟠龙天地建筑",
  71. "url":"http://121.43.55.7:10011/proxy/tileset.json?servertype=ppl_jz&token=622067E9-93E5-D8EC-E677-85B58A63C0C7"
  72. },{
  73. "category":"倾斜摄影",
  74. "info":"",
  75. "type":"qxData",
  76. "name":"蟠龙天地水系",
  77. "url":"http://121.43.55.7:10011/proxy/tileset.json?servertype=ppl_sx&token=622067E9-93E5-D8EC-E677-85B58A63C0C7"
  78. },{
  79. "category":"倾斜摄影",
  80. "info":"",
  81. "type":"qxData",
  82. "name":"蟠龙天地地面",
  83. "url":"http://121.43.55.7:10011/proxy/tileset.json?servertype=ppl_dm&token=622067E9-93E5-D8EC-E677-85B58A63C0C7"
  84. },{
  85. "category":"倾斜摄影",
  86. "info":"",
  87. "type":"qxData",
  88. "name":"蟠龙天地小品",
  89. "url":"http://121.43.55.7:10011/proxy/tileset.json?servertype=ppl_xp&token=622067E9-93E5-D8EC-E677-85B58A63C0C7"
  90. }
  91. ],
  92. "importantGoalsCategory": [],
  93. "importantGoalsSetting": [],
  94. },
  95. //底图类型设置
  96. defaultTypes: [{
  97. "name": "影像图",
  98. "id": "gr",
  99. "imgurl": "../images/layout/yingxiang.png"
  100. }, {
  101. "name": "地势图",
  102. "id": "gt",
  103. "imgurl": "../images/layout/dishi.png"
  104. }, {
  105. "name": "线划图",
  106. "id": "gm",
  107. "imgurl": "../images/layout/jiaot.png"
  108. }],
  109. };