Interface CreateMapTagsOptions

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

Properties

disabled?: boolean

Disable clicking tags when true. Defaults to false.

filter?: ((tag) => boolean)

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

Type declaration

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

      Parameters

      Returns boolean

showControlTags?: boolean

Should we show control tags? Defaults to false.

updateInterval?: number

Update interval in milliseconds, defaults to 5000

Generated using TypeDoc