Load vector tiles from sources described in MapLibre style documents
tile-retriever inputs a source object from a MapLibre style document, and constructs a tile retriever function.
The retriever function inputs a set of tile coordinates of the form
{ z, x, y }
. It then retrieves the tile from the endpoints specified in the
source, and returns a Promise resolving to the tile's layers and features
as a dictionary of GeoJSON FeatureCollections.
Using tile-retriever, you can play with the basic demo, build your own GIS code from scratch, or anything in between!
A new tile retriever function is instantiated as follows:
import * as tileRetriever from "tile-retriever";
const retrieve = tileRetriever.init({ source, defaultID });
where the initialization parameters are:
.source
(REQUIRED): A MapLibre source object. MUST be of typevector
orgeojson
, with all external information (TileJSON description, or GeoJSON data) already retrieved and present in the object (NOT linked via URLs). You can ensure the data is already retrieved by loading the style with the.loadStyle
method from tile-stencil.defaultID
: Only relevant for GeoJSON sources. Will be used as the layer name for the retrieved GeoJSON
The retriever function has the following signature:
const tilePromise = retrieve(tileCoords, init);
where the arguments are:
tileCoords
(REQUIRED): An object with properties{ z, x, y }
, corresponding to the indices of the desired tileinit
(OPTIONAL): An object with custom settings for the fetch call
The return value is a Promise resolving to the tile data. The Promise will reject if the fetch rejects, and will also reject if the fetch response has a status not equal to 200.
To make a retrieve
call abortable, supply an AbortController as the
init
object. Then, if you later decide you don't need the tile, you can abort
the request as follows:
const controller = new AbortController();
const tilePromise = retrieve(tileCoords, controller);
// ... For some reason, now you don't want the tile
controller.abort();
tilePromise
will then reject with an AbortError
.
The returned JSON data is a dictionary of layers, keyed on the original name
from the source vector tile layer. (For geojson sources, there will only be
one layer, with the key being the supplied defaultID
.) The value of each
layer is a GeoJSON FeatureCollection.
Example:
{
"layer1": { "type": "FeatureCollection", "features": [...] },
"layer2": { "type": "FeatureCollection", "features": [...] },
...
}