20 lines
1.2 KiB
JavaScript
20 lines
1.2 KiB
JavaScript
|
let bmapcfg = {
|
||
|
'imgext' : '.jpg', //瓦片图的后缀 ------ 根据需要修改,一般是 .png .jpg
|
||
|
'tiles_dir' : 'tiles', //普通瓦片图的地址,为空默认在 offlinemap/tiles/ 目录
|
||
|
// 'tiles_path': 'http://192.168.20.21:8082/', // 这个地址是瓦片文件本地起的服务器地址
|
||
|
'tiles_path': 'F:/Desktop/IntelligentSecurity/IntelligentSecurity_V_0.0.2/tiles', // 这个地址是瓦片文件本地起的服务器地址
|
||
|
'tiles_hybrid': '', //卫星瓦片图的地址,为空默认在 offlinemap/tiles_hybrid/ 目录
|
||
|
'tiles_self' : '' //自定义图层的地址,为空默认在 offlinemap/tiles_self/ 目录
|
||
|
};
|
||
|
|
||
|
//////////////////下面的保持不动///////////////////////////////////
|
||
|
var scripts = document.getElementsByTagName("script");
|
||
|
var JS__FILE__ = scripts[scripts.length - 1].getAttribute("src"); //获得当前js文件路径
|
||
|
bmapcfg.home = JS__FILE__.substr(0, JS__FILE__.lastIndexOf("/")+1); //地图API主目录
|
||
|
(function(){
|
||
|
window.BMap_loadScriptTime = (new Date).getTime();
|
||
|
//加载地图API主文件
|
||
|
document.write('<script type="text/javascript" src="'+bmapcfg.home+'bmap_offline_api_v3.0_min.js"></script>')
|
||
|
})();
|
||
|
///////////////////////////////////////////////////////////////////
|