Interface HonuaServiceMetadata

Top-level metadata for a FeatureServer or MapServer service.

interface HonuaServiceMetadata {
    cache?: HonuaCacheState;
    capabilities?: string;
    fullExtent?: HonuaExtent;
    layers?: {
        id: number;
        name: string;
    }[];
    maxRecordCount?: number;
    serviceDescription?: string;
    singleFusedMapCache?: boolean;
    spatialReference?: HonuaSpatialReference;
    supportedQueryFormats?: string;
    supportsStatistics?: boolean;
    tables?: {
        id: number;
        name: string;
    }[];
    useStandardizedQueries?: boolean;
}

Properties

capabilities?: string

Comma-delimited GeoServices operation names advertised by the service.

fullExtent?: HonuaExtent
layers?: {
    id: number;
    name: string;
}[]
maxRecordCount?: number
serviceDescription?: string
singleFusedMapCache?: boolean
spatialReference?: HonuaSpatialReference
supportedQueryFormats?: string
supportsStatistics?: boolean
tables?: {
    id: number;
    name: string;
}[]
useStandardizedQueries?: boolean