modeConfig.js 806 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // 本地联调开关
  2. const localTest = 0;
  3. // 服务器地址
  4. let baseURL = null;
  5. // websocket 服务器地址
  6. let websocketUrl = null;
  7. // 3D 地球瓦片路径
  8. let tilesUrl = null;
  9. // 3D 地球最大支持放大到多少级
  10. const tilesMaxLevel = 18;
  11. // 适配器地址
  12. const adapterUrl = "http://10.155.32.4:8011/";
  13. // 切换模块时是否提示当前模块名称(用于对内介绍项目时便捷显示模块名称)
  14. const showModuleName = 0;
  15. if (localTest) {
  16. baseURL = "http://192.168.10.6:9002/" // 联机调试
  17. } else {
  18. baseURL = "http://10.155.32.14:9002/" // 正式环境
  19. }
  20. websocketUrl = (baseURL.replace(/http:\/\/|https:\/\//g, "")) + "gyee-websocket";
  21. window.__MODE__ = {
  22. baseURL,
  23. websocketUrl,
  24. adapterUrl,
  25. tilesUrl,
  26. tilesMaxLevel,
  27. showModuleName
  28. };