Interface DataSourceTileList

List of visible tiles for a DataSource.

Hierarchy

  • DataSourceTileList

Properties

allVisibleTileLoaded: boolean

True if all [[visibleTiles]] are loaded.

dataSource: DataSource

The datasource that was producing the tiles.

numTilesLoading: number

The number of tiles which are still loading.

renderedTiles: Map<number, Tile>

Map of tiles that will be rendered, key is the the combination of tile key and offset, see [[getKeyForTileKeyAndOffset]]. This includes tiles that are not in the [[visibleTiles]] list but that are used as fallbacks b/c they are still in the cache.

storageLevel: number

The storage level of the visibleTiles. Note: renderedTiles might contain tiles from different levels.

visibleTiles: Tile[]

List of tiles we want to render (i.e. the tiles computed from the zoom level and view frustum). However some might not be renderable yet (e.g. loading). See [[renderedTiles]] for the actual list of tiles that the user will see.

zoomLevel: number

The current MapView zoom level.

Generated using TypeDoc