3.4.0 • Published 9 months ago
@pirxpilot/tileserver-gl-tiny v3.4.0
TileServer GL Tiny
This is a slimmed down clone of the tileserver-gl package. It's intended to be used as a standalone server for tiles in mbtiles format.
The following features of the original are not supported:
- server side rasterization
- font server - if needed use map-glyph-server
- CORS support - if needed use behind NGINX or alternative
Installation
npm install -g @pirxpilot/tileserver-gl-tinyYou will also need mbtiles
Usage
tileserver-gl-tiny --config path/to/config/fileConfig file can be in .json or yaml. If config file name is not specified
tilesrc config file is located according to the rules describe in the rc project.
Config file example:
port = 5080
max-age = 10d
[options.paths]
; this is where .mbtiles files are located
root = /var/lib/tiles
[data.v3]
mbtiles = planet.mbtiles
; add more [data.xxx] section to serve additional .mbtilesDocumentation
Most of the tileserver-gl documentation is relevant - specifically parts related to conig format.