Type Alias: MinimalTileData
MinimalTileData =
null| {byteLength?:number;height:number;width:number; }
Defined in: packages/deck.gl-raster/src/raster-tile-layer/raster-tile-layer.ts:31
Minimum interface returned by getTileData.
null is permitted to describe failed tile loads that do not produce any
data, which then do not render any layer.
Union Members
null
Type Literal
{ byteLength?: number; height: number; width: number; }
byteLength?
optionalbyteLength?:number
Byte length of the tile data, used by deck.gl's TileLayer for
byte-based cache eviction when maxCacheByteSize is set. Optional.
height
height:
number
Tile height in pixels.
width
width:
number
Tile width in pixels.