Created
September 27, 2023 13:39
-
-
Save HarelM/b50b01329bdba2c1c8cf84a0842db854 to your computer and use it in GitHub Desktop.
PMTiles offline style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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