225 lines
6.8 KiB
JavaScript
225 lines
6.8 KiB
JavaScript
|
|
/* 修改 木遥(微信: http://marsgis.cn/weixin.html ) */
|
|||
|
|
// 第三方类库加载管理js,方便切换lib
|
|||
|
|
/* eslint-disable */
|
|||
|
|
; (function () {
|
|||
|
|
var r = new RegExp('(^|(.*?\\/))(include-lib.js)(\\?|$)'),
|
|||
|
|
s = document.getElementsByTagName('script'),
|
|||
|
|
targetScript
|
|||
|
|
for (var i = 0; i < s.length; i++) {
|
|||
|
|
var src = s[i].getAttribute('src')
|
|||
|
|
if (src) {
|
|||
|
|
var m = src.match(r)
|
|||
|
|
if (m) {
|
|||
|
|
targetScript = s[i]
|
|||
|
|
break
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// cssExpr 用于判断资源是否是css
|
|||
|
|
var cssExpr = new RegExp('\\.css')
|
|||
|
|
|
|||
|
|
function inputLibs(list) {
|
|||
|
|
if (list == null || list.length === 0) {
|
|||
|
|
return
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
for (var i = 0, len = list.length; i < len; i++) {
|
|||
|
|
var url = list[i]
|
|||
|
|
if (cssExpr.test(url)) {
|
|||
|
|
var css = '<link rel="stylesheet" href="' + url + '">'
|
|||
|
|
document.writeln(css)
|
|||
|
|
} else {
|
|||
|
|
var script = '<script type="text/javascript" src="' + url + '"><' + '/script>'
|
|||
|
|
document.writeln(script)
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
//加载类库资源文件
|
|||
|
|
function load() {
|
|||
|
|
var arrInclude = (targetScript.getAttribute('include') || '').split(',')
|
|||
|
|
var libpath = targetScript.getAttribute('libpath') || ''
|
|||
|
|
|
|||
|
|
//在线lib,开发中请注释下面代码
|
|||
|
|
var isOnline = window.location.hostname.indexOf('mars3d') !== -1 //www.marsgis.cn
|
|||
|
|
if (isOnline) {
|
|||
|
|
libpath = 'http://mars3d.cn/lib/'
|
|||
|
|
}
|
|||
|
|
//在线lib end,开发中请注释上面代码
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
if (libpath.lastIndexOf('/') !== libpath.length - 1) {
|
|||
|
|
libpath += '/'
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
var libsConfig = {
|
|||
|
|
'jquery': [
|
|||
|
|
libpath + "jquery/jquery-2.1.4.min.js",
|
|||
|
|
],
|
|||
|
|
'jquery.scrollTo': [
|
|||
|
|
libpath + "jquery/scrollTo/jquery.scrollTo.min.js",
|
|||
|
|
],
|
|||
|
|
'jquery.minicolors': [
|
|||
|
|
libpath + "jquery/minicolors/jquery.minicolors.css",
|
|||
|
|
libpath + "jquery/minicolors/jquery.minicolors.min.js",
|
|||
|
|
],
|
|||
|
|
'jquery.range': [
|
|||
|
|
libpath + "jquery/range/range.css",
|
|||
|
|
libpath + "jquery/range/range.js",
|
|||
|
|
],
|
|||
|
|
'ztree': [
|
|||
|
|
libpath + "jquery/ztree/css/zTreeStyle/zTreeStyle.css",
|
|||
|
|
libpath + "jquery/ztree/css/mars/ztree-mars.css",
|
|||
|
|
libpath + "jquery/ztree/js/jquery.ztree.all.min.js",
|
|||
|
|
],
|
|||
|
|
'jstree': [
|
|||
|
|
libpath + "jstree/themes/default-dark/style.css",
|
|||
|
|
libpath + "jstree/jstree.min.js",
|
|||
|
|
],
|
|||
|
|
'jquery.mCustomScrollbar': [
|
|||
|
|
libpath + "jquery/mCustomScrollbar/jquery.mCustomScrollbar.css",
|
|||
|
|
libpath + "jquery/mCustomScrollbar/jquery.mCustomScrollbar.js",
|
|||
|
|
],
|
|||
|
|
'jedate': [
|
|||
|
|
libpath + "jquery/jedate/skin/jedate.css",
|
|||
|
|
libpath + "jquery/jedate/jedate.js",
|
|||
|
|
],
|
|||
|
|
'lazyload': [
|
|||
|
|
libpath + "jquery/lazyload/jquery.lazyload.min.js",
|
|||
|
|
],
|
|||
|
|
'font-awesome': [
|
|||
|
|
libpath + "fonts/font-awesome/css/font-awesome.min.css",
|
|||
|
|
],
|
|||
|
|
'font-marsgis': [
|
|||
|
|
libpath + "fonts/marsgis/iconfont.css",
|
|||
|
|
],
|
|||
|
|
'web-icons': [
|
|||
|
|
libpath + "fonts/web-icons/web-icons.css",
|
|||
|
|
],
|
|||
|
|
'animate': [
|
|||
|
|
libpath + "animate/animate.css",
|
|||
|
|
],
|
|||
|
|
'admui': [
|
|||
|
|
libpath + "admui/css/index.css",
|
|||
|
|
libpath + "admui/js/global/core.js", //核心
|
|||
|
|
libpath + "admui/js/global/configs/site-configs.js",
|
|||
|
|
libpath + "admui/js/global/components.js",
|
|||
|
|
],
|
|||
|
|
'admui-frame': [
|
|||
|
|
libpath + "admui/css/site.css",
|
|||
|
|
libpath + "admui/js/app.js",
|
|||
|
|
],
|
|||
|
|
'bootstrap': [
|
|||
|
|
libpath + "bootstrap/bootstrap.css",
|
|||
|
|
libpath + "bootstrap/bootstrap.min.js",
|
|||
|
|
],
|
|||
|
|
'bootstrap-table': [
|
|||
|
|
libpath + "bootstrap/bootstrap-table/bootstrap-table.css",
|
|||
|
|
libpath + "bootstrap/bootstrap-table/bootstrap-table.min.js",
|
|||
|
|
libpath + "bootstrap/bootstrap-table/locale/bootstrap-table-zh-CN.js"
|
|||
|
|
],
|
|||
|
|
'bootstrap-select': [
|
|||
|
|
libpath + "bootstrap/bootstrap-select/bootstrap-select.css",
|
|||
|
|
libpath + "bootstrap/bootstrap-select/bootstrap-select.min.js",
|
|||
|
|
],
|
|||
|
|
'bootstrap-checkbox': [
|
|||
|
|
libpath + "bootstrap/bootstrap-checkbox/awesome-bootstrap-checkbox.css",
|
|||
|
|
],
|
|||
|
|
'nprogress': [
|
|||
|
|
libpath + "nprogress/nprogress.css",
|
|||
|
|
libpath + "nprogress/nprogress.min.js",
|
|||
|
|
],
|
|||
|
|
'toastr': [
|
|||
|
|
libpath + "toastr/toastr.css",
|
|||
|
|
libpath + "toastr/toastr.js",
|
|||
|
|
],
|
|||
|
|
'layer': [
|
|||
|
|
libpath + "layer/theme/default/layer.css",
|
|||
|
|
libpath + "layer/theme/retina/retina.css",
|
|||
|
|
libpath + "layer/theme/mars/layer.css",
|
|||
|
|
libpath + "layer/layer.js"
|
|||
|
|
],
|
|||
|
|
'haoutil': [
|
|||
|
|
libpath + "hao/haoutil.js"
|
|||
|
|
],
|
|||
|
|
'echarts': [
|
|||
|
|
libpath + "echarts/echarts.min.js",
|
|||
|
|
libpath + "echarts/dark.js"
|
|||
|
|
],
|
|||
|
|
'echarts-gl': [
|
|||
|
|
libpath + "echarts/echarts.min.js",
|
|||
|
|
libpath + "echarts/echarts-gl.min.js"
|
|||
|
|
],
|
|||
|
|
'highlight': [
|
|||
|
|
libpath + "highlight/styles/foundation.css",
|
|||
|
|
libpath + "highlight/highlight.pack.js"
|
|||
|
|
],
|
|||
|
|
'turf': [
|
|||
|
|
libpath + "turf/turf.min.js"
|
|||
|
|
],
|
|||
|
|
'terraformer': [
|
|||
|
|
libpath + "terraformer/terraformer-1.0.9.min.js",
|
|||
|
|
libpath + "terraformer/terraformer-wkt-parser-1.2.0.min.js",
|
|||
|
|
],
|
|||
|
|
"mars3d-esri": [//arcgis的wfs服务支持
|
|||
|
|
libpath + "mars3d/plugins/esri/mars3d-esri.js"
|
|||
|
|
],
|
|||
|
|
'mars3d-echarts': [
|
|||
|
|
//echarts支持插件
|
|||
|
|
libpath + 'echarts/echarts.min.js',
|
|||
|
|
libpath + 'echarts/echarts-gl.min.js',
|
|||
|
|
libpath + 'mars3d/plugins/echarts/mars3d-echarts.js',
|
|||
|
|
],
|
|||
|
|
'mars3d-mapv': [
|
|||
|
|
//mapv支持插件
|
|||
|
|
libpath + 'mapV/mapv.min.js',
|
|||
|
|
libpath + 'mars3d/plugins/mapv/mars3d-mapv.js',
|
|||
|
|
],
|
|||
|
|
'mars3d-heatmap': [
|
|||
|
|
//heatmap热力图支持插件
|
|||
|
|
libpath + 'mars3d/plugins/heatmap/heatmap.min.js',
|
|||
|
|
libpath + 'mars3d/plugins/heatmap/mars3d-heatmap.js',
|
|||
|
|
],
|
|||
|
|
'mars3d-space': [
|
|||
|
|
//卫星插件
|
|||
|
|
libpath + 'mars3d/plugins/space/mars3d-space.js',
|
|||
|
|
],
|
|||
|
|
'mars3d-widget': [
|
|||
|
|
//项目widget模块插件
|
|||
|
|
libpath + 'mars3d/plugins/widget/mars3d-widget.css',
|
|||
|
|
libpath + 'mars3d/plugins/widget/mars3d-widget.js',
|
|||
|
|
],
|
|||
|
|
'mars3d': [
|
|||
|
|
//三维地球“主库”
|
|||
|
|
libpath + 'Cesium/Widgets/widgets.css', //cesium
|
|||
|
|
libpath + 'Cesium/Cesium.js',
|
|||
|
|
// libpath + 'mars3d/plugins/compatible/cesium-version.js', //cesium版本兼容处理
|
|||
|
|
libpath + 'mars3d/mars3d.css', //mars3d
|
|||
|
|
libpath + 'mars3d/mars3d.js',
|
|||
|
|
libpath + 'mars3d/plugins/navigation/mars3d-navigation.css', //导航插件
|
|||
|
|
libpath + 'mars3d/plugins/navigation/mars3d-navigation.js',
|
|||
|
|
],
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
var keys = {}
|
|||
|
|
for (var i = 0, len = arrInclude.length; i < len; i++) {
|
|||
|
|
var key = arrInclude[i]
|
|||
|
|
|
|||
|
|
if (keys[key]) {
|
|||
|
|
//规避重复引入lib
|
|||
|
|
continue
|
|||
|
|
}
|
|||
|
|
keys[key] = true
|
|||
|
|
|
|||
|
|
inputLibs(libsConfig[key])
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
load()
|
|||
|
|
})()
|