flywave-mapview.datasourcetilelist
Home > @flywave/flywave-mapview > DataSourceTileList
DataSourceTileList interface
List of visible tiles for a DataSource.
Signature:
export interface DataSourceTileList
Properties
Property | Modifiers | Type | Description |
|---|---|---|---|
boolean | True if all [[visibleTiles]] are loaded. | ||
The datasource that was producing the tiles. | |||
number | The number of tiles which are still loading. | ||
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. | ||
number | The storage level of the visibleTiles. Note: renderedTiles might contain tiles from different levels. | ||
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. | ||
number | The current MapView zoom level. |