-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapbox-styles.txt
44 lines (43 loc) · 1.14 KB
/
mapbox-styles.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Don't use this file directly. It's a guide to help you recreate the styles in Mapbox.
[
{
"id": "territories_text",
"type": "symbol",
"source": "composite",
"source-layer": "next_nld_terr_local_source_layer",
"layout": {
"text-field": [
"case",
["in", "Osage", ["to-string", ["get", "Name"]]],
"Osage",
["to-string", ["get", "Name"]]
],
"text-size": ["interpolate", ["linear"], ["zoom"], 0, 8, 22, 18]
},
"paint": {
"text-opacity": [
"interpolate",
["linear"],
["zoom"],
0,
0,
1,
1
],
"text-halo-color": "hsla(0, 0%, 100%, 0.8)",
"text-halo-width": 0.5,
"text-halo-blur": 1
}
},
{
"id": "territories",
"type": "fill",
"source": "composite",
"source-layer": "next_nld_terr_local_source_layer",
"paint": {
"fill-opacity": 0.2,
"fill-outline-color": "hsla(0, 0%, 0%, 0.44)",
"fill-color": ["get", "color"]
}
}
]