Options used to create a IndirectBuffer.

interface IndirectBufferOptions {
    label: string;
    geometries: (Geometry | IndexedGeometry)[];
    minEntrySize: number;
}

Properties

label: string

Label of the IndirectBuffer.

geometries: (Geometry | IndexedGeometry)[]

Array of Geometry to use with this IndirectBuffer.

minEntrySize: number

Number of elements each Geometry attributes should take in the IndirectBuffer. Default to 5 to handle both Geometry and IndexedGeometry.