import { vec3 } from "gl-matrix"; /** * 标签 * @category 模型 */ export declare class Label { /** * 不能重复 */ id: string; /** * 标签类型 */ type: "string" | "img" | "div"; /** * 标签类容 */ data: HTMLImageElement | string | HTMLDivElement; /** * 标签位置 */ point: vec3; /** * 阴影颜色 */ shadow_color: string; /** * 字体 */ font: string; /** * 字体颜色 */ font_color: string; /** * 字体背景颜色 */ font_back_color: string; constructor(); }