Commit 1e3efdf8 by wanghao

修改lib

parent 48509a02
......@@ -110,27 +110,3 @@ window.configLibs = {
hls: ["video/hls/hls.js"],
flv: ["video/flv/flv.min.js"]
}
// 官网发布时用CDN服务
// if (window.location.hostname.indexOf("mars") !== -1) {
// window.cdnLibsPath = "http://mars3d.cn/lib/"
// }
// 本地测试 localStorage.setItem("muyao-debugger",1)
if (localStorage.getItem("muyao-debugger") === "1") {
for (const key in window.configLibs) {
if (key.startsWith("mars3d")) {
const arrUrl = window.configLibs[key]
for (let index = 0; index < arrUrl.length; index++) {
const url = arrUrl[index]
const fileName = url?.substring(url.lastIndexOf("/") + 1, url.length)
if (fileName.startsWith("mars3d")) {
arrUrl[index] = arrUrl[index].replace(".js", "-src.js").replace(".css", "-src.css")
} else if (fileName.indexOf("Cesium") !== -1) {
arrUrl[index] = arrUrl[index].replace("Cesium", "CesiumUnminified")
}
}
}
}
console.log("正在使用SDK调试版本")
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论