GeoLeaf Core API - v3.0.0
    Preparing search index...

    Minimal structural view of a feature/POI as needed for taxonomy resolution.

    interface TaxonomyFeatureLike {
        layerId?: string;
        _layerConfig?: { id?: string } | null;
        attributes?: Record<string, unknown> | null;
        properties?: Record<string, unknown> | null;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    layerId?: string

    GeoLeaf layer id the feature belongs to (preferred).

    _layerConfig?: { id?: string } | null

    Legacy POI layer-config carrier (_layerConfig.id).

    attributes?: Record<string, unknown> | null

    GeoLeaf attributes bag.

    properties?: Record<string, unknown> | null

    GeoJSON properties bag.