Created
July 1, 2022 14:15
-
-
Save kallewesterling/5ed4d792b1c908c1297aebc8cbec57a2 to your computer and use it in GitHub Desktop.
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, | |
"name": "NLS tile server", | |
"glyphs": "https://api.maptiler.com/fonts/{fontstack}/{range}.pbf?key=NinLdJ8VSFZt4RFJz12g", | |
"sources": { | |
"nls": { | |
"type": "raster", | |
"tiles": ["https://api.maptiler.com/tiles/uk-osgb10k1888/{z}/{x}/{y}.jpg?key=NinLdJ8VSFZt4RFJz12g"], | |
"tileSize": 256 | |
}, | |
"openmaptiles": { | |
"url": "https://api.maptiler.com/tiles/uk-osgb10k1888/tiles.json?key=NinLdJ8VSFZt4RFJz12g", | |
"type": "vector" | |
} | |
}, | |
"layers": [{ | |
"id": "nls_raster", | |
"type": "raster", | |
"source": "nls", | |
"minzoom": 0, | |
"maxzoom": 22 | |
}, { | |
"id": "label_place_city", | |
"type": "symbol", | |
"paint": { | |
"text-color": "hsl(0, 0%, 0%)", | |
"text-halo-blur": 0, | |
"text-halo-color": "hsla(0, 0%, 100%, 0.75)", | |
"text-halo-width": 2 | |
}, | |
"filter": ["all", ["==", "$type", "Point"], ["==", "class", "city"]], | |
"layout": { | |
"text-font": ["Noto Sans Regular"], | |
"text-size": { | |
"stops": [[3, 11], [8, 16]] | |
}, | |
"text-field": "{name:latin}", | |
"text-max-width": 10 | |
}, | |
"source": "openmaptiles", | |
"maxzoom": 16, | |
"source-layer": "place" | |
}, { | |
"id": "label_place_other", | |
"type": "symbol", | |
"paint": { | |
"text-color": "hsl(0, 0%, 25%)", | |
"text-halo-blur": 0, | |
"text-halo-color": "hsl(0, 0%, 100%)", | |
"text-halo-width": 2 | |
}, | |
"filter": ["all", ["==", "$type", "Point"], ["!in", "class", "city", "state", "country", "continent"]], | |
"layout": { | |
"text-font": ["Noto Sans Regular"], | |
"text-size": { | |
"stops": [[6, 10], [12, 14]] | |
}, | |
"text-field": "{name:latin}", | |
"visibility": "visible", | |
"text-anchor": "center", | |
"text-max-width": 6 | |
}, | |
"source": "openmaptiles", | |
"minzoom": 8, | |
"source-layer": "place" | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment