-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsimple.json
More file actions
127 lines (127 loc) · 2.81 KB
/
simple.json
File metadata and controls
127 lines (127 loc) · 2.81 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"version": 8,
"name": "simple",
"sources": {
"compass": {
"type": "vector",
"tiles": ["http://mapserver.localhost/cgi-bin/mapserv?map=/mapserver/mvt-demo/demo.map&mode=tile&tilemode=gmap&tile={x}+{y}+{z}&layers=all&map.imagetype=mvt"]
}
},
"sprite": "https://openmaptiles.github.io/osm-bright-gl-style/sprite",
"glyphs": "https://free.tilehosting.com/fonts/{fontstack}/{range}.pbf?key=RiS4gsgZPZqeeMlIyxFo",
"layers": [
{
"id": "background",
"type": "background",
"paint": {
"background-color": "#f8f4f0"
}
},{
"id": "wma",
"type": "fill",
"source": "compass",
"source-layer": "wma",
"paint": {
"fill-color": "#f4b642"
}
},{
"id": "sna",
"type": "fill",
"source": "compass",
"source-layer": "sna",
"paint": {
"fill-color": "#c082ed"
}
},{
"id": "lakes",
"type": "fill",
"source": "compass",
"source-layer": "lakes",
"paint": {
"fill-color": "#a0c8f0"
}
},{
"id": "major roads",
"type": "line",
"source": "compass",
"source-layer": "major_roads",
"paint": {
"line-width": 2,
"line-color": "#cccccc"
}
},{
"interactive": true,
"id": "places",
"type": "circle",
"source": "compass",
"source-layer": "places",
"layout": {
"visibility": "visible"
},
"paint": {
"circle-radius": 3,
"circle-color": "rgba(55,148,179,1)"
}
},{
"id": "lakes-name",
"type": "symbol",
"source": "compass",
"source-layer": "lakes",
"filter": [
"all",
[
"==",
"$type",
"Polygon"
],
[
"has",
"name"
],
[
"!=",
"name",
"Unnamed"
]
],
"layout": {
"text-font": [
"Open Sans Italic"
],
"text-size": 12,
"text-field": "{name}",
"text-max-width": 5,
"text-rotation-alignment": "map",
"text-letter-spacing": 0.2,
"symbol-spacing": 350
},
"paint": {
"text-color": "#74aee9",
"text-halo-width": 1.5,
"text-halo-color": "rgba(255,255,255,0.7)"
}
},{
"id": "places-name",
"type": "symbol",
"source": "compass",
"source-layer": "places",
"filter": [
"all",
["==", "$type", "Point"]
],
"layout": {
"visibility": "visible",
"text-font": [
"Open Sans Italic"
],
"text-size": 14,
"text-field": "{name}"
},
"paint": {
"text-color": "#000000",
"text-halo-width": 1.5,
"text-halo-color": "rgba(255,255,255,0.7)"
}
}
]
}