Newer
Older
smartwell_front / src / utils / maputils.js
Stephanie on 17 Aug 2022 303 bytes fix<*>: 修改首页屏相关效果
/**
 * 获取3D地图图层配置
 * @param type 类型,type=file是从文件中读取,type=api是从接口中获取
 * @returns {Object}
 */
export function getMapConfig(type = 'file') {
  if (type === 'file') {
    return window.mapConfig
  } else {
    // todo: 从接口获取地图配置
  }
}