import { AssetTypeEnum } from '@easytwin/core'; export interface AssetType { label: string; type: AssetTypeEnum; accept: string; planned: boolean; } export const AssetTypeInfos: AssetType[] = [ { label: '模型', type: AssetTypeEnum.MODEL, accept: '.fbx,.gltf,.glb', planned: true, }, { label: '散点', type: AssetTypeEnum.POINT, accept: '*', planned: false, }, { label: '信息面板', type: AssetTypeEnum.POIPANNEL, accept: '*', planned: false, }, { label: 'Iframe 面板', type: AssetTypeEnum.POIIFRAME, accept: '*', planned: false, }, { label: '路径', type: AssetTypeEnum.PATHLINE, accept: '*', planned: true, }, { label: '飞线', type: AssetTypeEnum.FLYLINE, accept: '*', planned: true, }, { label: '区域', type: AssetTypeEnum.POLYGON, accept: '*', planned: true, }, { label: '围栏', type: AssetTypeEnum.FENCE, accept: '*', planned: false, }, { label: '热力图', type: AssetTypeEnum.HEATMAP, accept: '*', planned: true, }, ]; export enum DraggableTypeEnum { TREE = 'tree', GROUP = 'group', }