Tile
Defined in: src/source/tile.ts:52
A tile object is the combination of a Coordinate, which defines its place, as well as a unique ID and data tracking for its content
Methods
loadVectorData()
loadVectorData(
data
:WorkerTileResult
,painter
:any
,justReloaded?
:boolean
):void
Defined in: src/source/tile.ts:153
Given a data object with a 'buffers' property, load it into this tile's elementGroups and buffers properties and set loaded to true. If the data is null, like in the case of an empty GeoJSON tile, no-op but still set loaded to true.
Parameters
Parameter | Type | Description |
---|---|---|
data |
WorkerTileResult |
The data from the worker |
painter |
any |
the painter |
justReloaded? |
boolean |
true to just reload |
Returns
void
unloadVectorData()
unloadVectorData():
void
Defined in: src/source/tile.ts:226
Release any data or WebGL resources referenced by this tile.
Returns
void