Skip to content

Instantly share code, notes, and snippets.

@kdclaw3
Created October 25, 2023 18:00
Show Gist options
  • Save kdclaw3/1678a8e135c524a673a0ff18ce94b288 to your computer and use it in GitHub Desktop.
Save kdclaw3/1678a8e135c524a673a0ff18ce94b288 to your computer and use it in GitHub Desktop.
Mapbox Stylesheet Cheatsheet
// icon
{
"type": "symbol",
"layout": {
"icon-size": 0.5
},
"paint": {}
}
// point
{
"type": "circle",
"layout": {},
"paint": {
"circle-radius": 6,
"circle-color": "#000000"
}
}
// line
{
"type": "line",
"layout": {
"line-join": "round",
"line-cap": "round"
},
"paint": {
"line-color": {
"type": "categorical",
"property": "function",
"stops": [
[
"WATERLL",
"#4DA8FF"
],
[
"WATERPM",
"#70FFFF"
]
]
},
"line-width": {
"base": 2,
"stops": [
[
14,
5
],
[
24,
50
]
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment