interface GMFTreeItem {
    childLayers?: GMFChildLayer[];
    children?: GMFTreeItem[];
    dimensions?: Record<string, object>;
    id: number;
    imageType?: string;
    layer?: string;
    layers?: string;
    maxResolutionHint?: number;
    metadata?: GMFMetadata;
    minResolutionHint?: number;
    name: string;
    ogcServer?: string;
    projection?: string;
    source?: string;
    style?: string;
    type?: "OSM" | "WMS" | "WMTS" | "VectorTiles" | "COG" | "XYZ";
    url?: string;
}

Hierarchy (View Summary)

Properties

childLayers?: GMFChildLayer[]
children?: GMFTreeItem[]
dimensions?: Record<string, object>
id: number
imageType?: string
layer?: string
layers?: string
maxResolutionHint?: number
metadata?: GMFMetadata
minResolutionHint?: number
name: string
ogcServer?: string
projection?: string
source?: string
style?: string
type?: "OSM" | "WMS" | "WMTS" | "VectorTiles" | "COG" | "XYZ"
url?: string