JavaScript 中定义全局地图源配置文件
需求来源 本地和服务器上都有地图资源,离线是想使用本地的,速度更快。
新建 mapconfig.js 再在 index.html 引用即可。
//将mapRemote改成mapLocal后,请务必改回mapRemote,避免下次拉取代码产生冲突
var mapconfigurl = (function($){
$.testConfig ={
choseMap: {mapLocal: 'http://localhost:8080',mapRemote: 'http://43.172.156.114:8080'},
}
return $.testConfig.choseMap.mapRemote
})(window.mapconfigurl||{});