Skip to content

Instantly share code, notes, and snippets.

@HarelM
Created September 27, 2023 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HarelM/b50b01329bdba2c1c8cf84a0842db854 to your computer and use it in GitHub Desktop.
Save HarelM/b50b01329bdba2c1c8cf84a0842db854 to your computer and use it in GitHub Desktop.
PMTiles offline style
{
"version": 8,
"sources": {
"example_source": {
"type": "vector",
"tiles": ["pmtiles://my.pmtiles/{z}/{x}/{y}.pbf"],
"minzoom": 0,
"maxzoom": 14
}
},
"layers": [
{
"id":"buildings",
"source": "example_source",
"source-layer":"landuse",
"type": "fill",
"paint": {
"fill-color": "steelblue"
}
},
{
"id":"roads",
"source": "example_source",
"source-layer":"roads",
"type": "line",
"paint": {
"line-color": "black"
}
},
{
"id":"mask",
"source": "example_source",
"source-layer":"mask",
"type": "fill",
"paint": {
"fill-color": "white"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment