-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapbox-style.json
113 lines (108 loc) · 2.95 KB
/
mapbox-style.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"version": 8,
"sprite": "https://markeberhart.github.io/vt-stacker/sprite/sprite",
"glyphs": "https://markeberhart.github.io/vt-stacker/fonts/{fontstack}/{range}.pbf",
"sources": {
"mapdata": {
"type": "vector",
"tiles": ["https://markeberhart.github.io/vt-stacker/tiles/{z}/{x}/{y}.pbf"],
"maxzoom":5,
"minzoom":0
}
},
"light":{
"anchor":"viewport",
"color":"#ffffff",
"intensity":0.75
},
"layers": [
{
"id": "background",
"type": "background",
"paint": {
"background-color": "rgba(25, 71, 76, 1)"
}
},
{
"id": "layer-countries",
"type": "fill",
"source": "mapdata",
"source-layer": "countries",
"minzoom":0,
"maxzoom":14,
"paint": {
"fill-color": "rgba(200,200,200,1)",
"fill-outline-color":"rgba(50,50,50,0.8)"
}
},
{
"id": "layer-states",
"type": "fill",
"source": "mapdata",
"source-layer": "states",
"minzoom":0,
"maxzoom":14,
"paint": {
"fill-color": "rgba(187,174,124,1)",
"fill-outline-color":"rgba(50,50,50,0.8)"
}
},
{
"id": "layer-counties",
"type": "fill",
"source": "mapdata",
"source-layer": "counties",
"minzoom":0,
"maxzoom":14,
"paint": {
"fill-color": "rgba(187,174,124,1)"
}
},
{
"id": "layer-districts",
"type": "line",
"source": "mapdata",
"source-layer": "districts",
"paint": {
"line-color": "rgba(0, 0, 0,0.7)",
"line-width": 1.5,
"line-dasharray":[4,1]
}
},
{
"id": "layer-cities",
"type": "symbol",
"source": "mapdata",
"filter": ["all",
["==", "FEATURECLA", "Admin-1 capital"]
],
"source-layer": "places",
"minzoom": 2,
"maxzoom": 14,
"layout": {
"icon-image": "dot-10",
"icon-size": 1,
"icon-rotate": 0,
"icon-padding": 2,
"text-justify": "left",
"text-anchor":"left",
"text-padding": 5,
"text-rotate": 0,
"text-offset":[0.5,0],
"text-size": 11,
"text-field": "{NAME}",
"text-font": ["Metropolis Regular"],
"text-max-angle": 30,
"text-transform": "uppercase",
"visibility": "visible"
},
"paint": {
"text-color": "#000000",
"text-halo-color": "#fff",
"text-translate": [0, 0],
"text-halo-width": 1,
"text-halo-blur": 1
}
}
]
}