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

    Sprite / icon config (single source of truth for POI icon rendering).

    interface TaxonomyIconsConfig {
        spriteUrl?: string;
        symbolPrefix?: string;
        defaultIcon?: string;
        iconSize?: number;
        showOnMap?: boolean;
    }
    Index

    Properties

    spriteUrl?: string

    URL of the profile sprite SVG (relative to the deployment).

    symbolPrefix?: string

    Prefix prepended to svgId to form the <symbol> id. Do NOT repeat it inside svgId — that yields a doubled, non-existent id.

    defaultIcon?: string

    svgId used when a category resolves no icon of its own.

    iconSize?: number

    MapLibre icon-size of the symbol sub-layer. Absent → 0.5.

    showOnMap?: boolean

    Whether category icons are shown on the map / in the legend. Absent means "on" (the legend's shouldUseIcons gate treats !== false as enabled).