-
Notifications
You must be signed in to change notification settings - Fork 12
/
style.json
54 lines (54 loc) · 1.39 KB
/
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
{
"version": 8,
"center": [ 0, 0 ],
"zoom": 6,
"sources": {
"geojson": {
"type": "geojson",
"data": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Point",
"coordinates": [0, 0]
}
},
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Point",
"coordinates": [1.1, 0.1]
}
}
]
}
}
},
"sprite": "local://sprites/sprite",
"layers": [
{
"id": "background",
"type": "background",
"interactive": true,
"paint": {
"background-color": "black"
}
},
{
"id": "symbol",
"type": "symbol",
"source": "geojson",
"layout": {
"icon-image": "bicycle-12",
"icon-size": 2
},
"paint": {
"icon-opacity": 0.25
}
}
]
}