@meridian/web-sdk
    Preparing search index...

    Interface CreateMapTagsOptions

    interface CreateMapTagsOptions {
        disabled?: boolean;
        filter?: (tag: TagData) => boolean;
        showControlTags?: boolean;
        updateInterval?: number;
    }
    Index

    Properties

    disabled?: boolean

    Disable clicking tags when true. Defaults to false.

    filter?: (tag: TagData) => boolean

    Filter function used to hide tags. Return false to hide a tag. Defaults to () => true.

    showControlTags?: boolean

    Should we show control tags? Defaults to false.

    updateInterval?: number

    Update interval in milliseconds, defaults to 5000