-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathexample-style-mapbox-source.json
45 lines (45 loc) · 1.14 KB
/
example-style-mapbox-source.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
{
"version": 8,
"sources": {
"mapbox": {
"type": "vector",
"url": "mapbox://mapbox.mapbox-streets-v7"
}
},
"layers": [
{
"id": "background",
"type": "background",
"paint": {
"background-color": "#dedede"
}
},
{
"id": "water",
"type": "fill",
"source": "mapbox",
"source-layer": "water",
"paint": {
"fill-color": "#a0cfdf"
}
},
{
"layout": {
"line-cap": "round",
"line-join": "round"
},
"filter": ["all", ["==", "$type", "LineString"], ["all", ["<=", "admin_level", 2], ["==", "maritime", 0]]],
"type": "line",
"source": "mapbox",
"id": "admin_country",
"paint": {
"line-color": "#8b8a8a",
"line-width": {
"base": 1.3,
"stops": [[3, 0.5], [22, 15]]
}
},
"source-layer": "admin"
}
]
}