_3DContainer.d.ts 466 Bytes
Newer Older
Hanadi's avatar
Hanadi committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Extent } from "./Extent";
import { BoundingVolume } from "./BoundingVolume";
import { Link } from "./Link";
export declare class _3DContainer {
    id: string;
    title?: string;
    description?: string;
    collectionType?: string;
    itemType?: string;
    extent: Extent;
    contentExtent?: BoundingVolume;
    crs?: string[];
    links: Link[];
    children?: _3DContainer[];
    content?: Link[];
    static fromJson(jsonObj: any): _3DContainer;
}