Newer
Older
smartwell_front_dz / src / utils / maputils.js
wangxitong on 11 Sep 2023 303 bytes first commit
/**
 * 获取3D地图图层配置
 * @param type 类型,type=file是从文件中读取,type=api是从接口中获取
 * @returns {Object}
 */
export function getMapConfig(type = 'file') {
  if (type === 'file') {
    return window.mapConfig
  } else {
    // todo: 从接口获取地图配置
  }
}