Interface LoadHonuaFeatureServiceGeoJsonOptions

Options controlling how the adapter fetches feature-service data.

interface LoadHonuaFeatureServiceGeoJsonOptions {
    attribution?: string;
    definitionExpression?: string;
    maxPages?: number;
    outFields?: string[];
    outSR?: number;
    pageSize?: number;
    signal?: AbortSignal;
}

Properties

attribution?: string

Attribution to attach to the produced source spec.

definitionExpression?: string

Server-side WHERE clause. Defaults to "1=1".

maxPages?: number

Maximum pages to fetch.

outFields?: string[]

Fields to request. Defaults to all (["*"]).

outSR?: number

Output spatial reference WKID. GeoJSON requires 4326; defaults to it.

pageSize?: number

Page size for paginated fetching.

signal?: AbortSignal

Abort signal forwarded to the query.