Interface MicrioUIProps

interface MicrioUIProps {
    error?: string;
    loadingProgress?: number;
    micrio: HTMLMicrioElement;
    noHTML: boolean;
    noLogo?: boolean;
}

Properties

error?: string

Optional error message to display.

loadingProgress?: number

Loading progress (0-1), used for the progress indicator.

The main HTMLMicrioElement instance. Provided by element.ts

noHTML: boolean

If true, suppresses rendering of most UI elements (except markers if data-ui="markers").

noLogo?: boolean

If true, suppresses rendering of the Micrio logo. Defaults to noHTML.