export type TAG_POSITION = 'TOP' | 'BOTTOM' | 'LEFT' | 'RIGHT' | 'CENTER'; export type TAG_TYPE = 'POI' | 'MARKER'; export interface ITag { tag: HTMLElement; parentId?: string; pos?: TAG_POSITION; type?: TAG_TYPE; position?: { x: number; y: number; z?: number; }; id?: string; floorId?: string; }