Open Pioneer Trails Packages
    Preparing search index...

    The general shape of features returned by an OGC API Features service.

    interface FeatureResponse {
        geometry: unknown;
        id: string | number;
        properties: Readonly<Record<string, unknown>>;
        type: string;
    }
    Index

    Properties

    geometry: unknown

    The geometry of the feature.

    id: string | number

    The id of the feature.

    properties: Readonly<Record<string, unknown>>

    The properties of the feature.

    type: string

    The type of the feature (e.g. Feature).