@vuemap/vue-amap-extra
Version:
@vuemap/vue-amap扩展库,包含threejs相关图层
27 lines (26 loc) • 459 B
TypeScript
export interface Vec {
x: number;
y: number;
z: number;
}
interface PolygonFeature {
type: string;
geometry: {
type: string;
coordinates: any[];
};
properties?: {
[key: string]: any;
};
}
export interface Polygon {
type: string;
features: PolygonFeature[];
properties?: any;
[key: string]: any;
}
export interface MoveAnimation {
duration?: number;
smooth: boolean;
}
export {};