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

    Minimal structural view of a feature passed to the taxonomy icon resolver: the GeoLeaf layer id (required by the resolver's per-layer binding) and the raw GeoJSON properties bag (holding the category / sub-category values).

    interface TaxonomyResolverFeature {
        layerId?: string;
        properties?: Record<string, unknown> | null;
    }
    Index

    Properties

    layerId?: string
    properties?: Record<string, unknown> | null