Interface ColumnarDeckGlProjectionRequestExperimental

Request to bind a columnar batch to a deck.gl projection.

interface ColumnarDeckGlProjectionRequest {
    attributes: readonly ColumnarDeckGlAttributeBinding[];
    batch: ColumnarBatchV1;
    identity: ColumnarDeckGlIdentity;
    layer?: DeckGlLayerKind;
    layerId: string;
    props?: Readonly<Record<string, unknown>>;
}

Properties

attributes: readonly ColumnarDeckGlAttributeBinding[]

Only scatterplot is supported by adapter contract v1.0. Defaults to it.

layerId: string
props?: Readonly<Record<string, unknown>>

Forwarded to the deck.gl constructor. id, data, and pickable are reserved.