Interface GeoServicesDiscoveryOptions

Options for metadata-only GeoServices discovery.

interface GeoServicesDiscoveryOptions {
    client?: HonuaClient;
    clientOptions?: Omit<HonuaClientOptions, "baseUrl">;
    endpoint: string | URL;
    metadata?: GeoServicesMetadataRequestOptions;
    refresh?: boolean;
    signal?: AbortSignal;
}

Properties

client?: HonuaClient
clientOptions?: Omit<HonuaClientOptions, "baseUrl">
endpoint: string | URL

Raw request cache directive; this facade does not own TTL/stale metadata caching.

refresh?: boolean
signal?: AbortSignal