Type Alias TMarkerState

TMarkerState: {
    coordinate: Coordinate;
    element: HTMLElement;
    enabled: boolean;
    interactive: boolean | "pointer-events-auto";
    rank: TCollisionRankingTier | "initial";
    type: "marker";
}

Type declaration

  • coordinate: Coordinate

    The current coordinate of the marker.

  • element: HTMLElement

    HTML element for the marker.

  • enabled: boolean

    Whether the marker is enabled.

  • interactive: boolean | "pointer-events-auto"

    Whether the marker is interactive. true indicates that the marker will be registered in the SDK interaction events. 'pointer-events-auto' indicates that the marker will receive browser pointer events.

  • rank: TCollisionRankingTier | "initial"

    Priority level of the marker, used for determining display order.

  • type: "marker"