Skip to content

Instantly share code, notes, and snippets.

@canbax
Last active June 29, 2026 10:17
Show Gist options
  • Select an option

  • Save canbax/148ef7c45822bdf26ae4db08abf14ab9 to your computer and use it in GitHub Desktop.

Select an option

Save canbax/148ef7c45822bdf26ae4db08abf14ab9 to your computer and use it in GitHub Desktop.
mario-style.json
{
"version": 8,
"name": "Super Mario Retro World",
"glyphs": "https://api.maptiler.com/fonts/{fontstack}/{range}.pbf?key=R2qs1fLudTdtJvdt4MRp",
"sources": {
"openmaptiles": {
"type": "vector",
"url": "https://api.maptiler.com/tiles/v3/tiles.json?key=R2qs1fLudTdtJvdt4MRp"
}
},
"layers": [
{
"id": "background",
"type": "background",
"paint": {
"background-color": "#f4e8d0"
}
},
{
"id": "water",
"type": "fill",
"source": "openmaptiles",
"source-layer": "water",
"paint": {
"fill-color": "#b8d4d4"
}
},
{
"id": "parks",
"type": "fill",
"source": "openmaptiles",
"source-layer": "landuse",
"filter": ["==", "class", "park"],
"paint": {
"fill-color": "#c8d4a4"
}
},
{
"id": "roads",
"type": "line",
"source": "openmaptiles",
"source-layer": "transportation",
"paint": {
"line-color": "#d4c4a8",
"line-width": 2
}
},
{
"id": "place-labels",
"type": "symbol",
"source": "openmaptiles",
"source-layer": "place",
"layout": {
"text-field": "{name:latin}",
"text-font": ["Roboto Regular"],
"text-size": 12
},
"paint": {
"text-color": "#4a3b32"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment