Type Alias TMarkerState

TMarkerState: {
    coordinate: Coordinate;
    element: HTMLElement;
    enabled: boolean;
    interactive: boolean;
    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

    Whether the marker is interactive.

  • rank: TCollisionRankingTier | "initial"

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

  • type: "marker"