@openhistoricalmap/map-styles 0.9.7 → 0.9.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -5
- package/dist/historical/historical.json +729 -168
- package/dist/japanese_scroll/japanese_scroll.json +21 -6
- package/dist/ohm.styles.js +940 -185
- package/dist/railway/railway.json +209 -31
- package/dist/woodblock/woodblock.json +8 -7
- package/historical/historical.json +417 -118
- package/japanese_scroll/japanese_scroll.json +15 -13
- package/package.json +2 -2
- package/railway/railway.json +93 -41
- package/woodblock/woodblock.json +8 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 8,
|
|
3
|
-
"name": "
|
|
3
|
+
"name": "ohm-historical",
|
|
4
4
|
"metadata": {"maputnik:renderer": "mbgljs"},
|
|
5
5
|
"sources": {
|
|
6
6
|
"osm": {
|
|
@@ -137,30 +137,97 @@
|
|
|
137
137
|
"source-layer": "other_areas",
|
|
138
138
|
"filter": ["==", ["get", "class"], "military"],
|
|
139
139
|
"layout": {"visibility": "visible"},
|
|
140
|
-
"paint": {
|
|
140
|
+
"paint": {
|
|
141
|
+
"fill-color": "rgba(255, 0, 0, 0.03)"
|
|
142
|
+
}
|
|
141
143
|
},
|
|
142
144
|
{
|
|
143
|
-
"id": "
|
|
145
|
+
"id": "military-pattern",
|
|
146
|
+
"type": "fill",
|
|
147
|
+
"source": "osm",
|
|
148
|
+
"source-layer": "other_areas",
|
|
149
|
+
"filter": ["==", ["get", "class"], "military"],
|
|
150
|
+
"layout": {"visibility": "visible"},
|
|
151
|
+
"paint": {
|
|
152
|
+
"fill-pattern": "military-fill"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "aero_aerodrome_area",
|
|
157
|
+
"type": "fill",
|
|
158
|
+
"source": "osm",
|
|
159
|
+
"source-layer": "transport_areas",
|
|
160
|
+
"minzoom": 10,
|
|
161
|
+
"maxzoom": 24,
|
|
162
|
+
"filter": ["==", ["get", "type"], "aerodrome"],
|
|
163
|
+
"layout": {"visibility": "visible"},
|
|
164
|
+
"paint": {
|
|
165
|
+
"fill-color": "rgba(245, 245, 240, 1)",
|
|
166
|
+
"fill-outline-color": "rgba(214, 212, 212, 1)"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"id": "aero_heliport_area",
|
|
144
171
|
"type": "fill",
|
|
145
172
|
"source": "osm",
|
|
146
173
|
"source-layer": "transport_areas",
|
|
147
174
|
"minzoom": 12,
|
|
148
175
|
"maxzoom": 24,
|
|
176
|
+
"filter": ["==", ["get", "type"], "helipad"],
|
|
177
|
+
"layout": {"visibility": "visible"},
|
|
178
|
+
"paint": {
|
|
179
|
+
"fill-color": "rgba(240, 240, 240, 1)",
|
|
180
|
+
"fill-outline-color": "rgba(214, 212, 212, 1)"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"id": "airports",
|
|
185
|
+
"type": "fill",
|
|
186
|
+
"source": "osm",
|
|
187
|
+
"source-layer": "transport_areas",
|
|
188
|
+
"minzoom": 11,
|
|
189
|
+
"maxzoom": 24,
|
|
149
190
|
"filter": ["==", ["get", "type"], "apron"],
|
|
150
191
|
"layout": {"visibility": "visible"},
|
|
151
|
-
"paint": {"fill-color": "rgba(
|
|
192
|
+
"paint": {"fill-color": "rgba(235, 235, 225, 1)"}
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"id": "nature_reserve_fill",
|
|
196
|
+
"type": "fill",
|
|
197
|
+
"source": "osm",
|
|
198
|
+
"source-layer": "landuse_areas",
|
|
199
|
+
"minzoom": 6,
|
|
200
|
+
"maxzoom": 24,
|
|
201
|
+
"filter": ["in", ["get", "type"], ["literal", ["nature_reserve"]]],
|
|
202
|
+
"layout": {"visibility": "visible"},
|
|
203
|
+
"paint": {
|
|
204
|
+
"fill-color": [
|
|
205
|
+
"interpolate",
|
|
206
|
+
["linear"],
|
|
207
|
+
["zoom"],
|
|
208
|
+
0,
|
|
209
|
+
"rgba(172, 221, 153, .3)",
|
|
210
|
+
4,
|
|
211
|
+
"rgba(168, 213, 159, .3)",
|
|
212
|
+
5,
|
|
213
|
+
"rgba(183, 234, 163, .3)",
|
|
214
|
+
7,
|
|
215
|
+
"rgba(180, 252, 174, .3)"
|
|
216
|
+
],
|
|
217
|
+
"fill-opacity": 1
|
|
218
|
+
}
|
|
152
219
|
},
|
|
153
220
|
{
|
|
154
221
|
"id": "landuse_areas_allz",
|
|
155
222
|
"type": "fill",
|
|
156
223
|
"source": "osm",
|
|
157
224
|
"source-layer": "landuse_areas",
|
|
158
|
-
"minzoom":
|
|
225
|
+
"minzoom": 6,
|
|
159
226
|
"maxzoom": 24,
|
|
160
227
|
"filter": [
|
|
161
228
|
"in",
|
|
162
229
|
["get", "type"],
|
|
163
|
-
["literal", ["forest", "
|
|
230
|
+
["literal", ["forest", "park", "wood"]]
|
|
164
231
|
],
|
|
165
232
|
"layout": {"visibility": "visible"},
|
|
166
233
|
"paint": {
|
|
@@ -227,10 +294,10 @@
|
|
|
227
294
|
["get", "type"],
|
|
228
295
|
"park",
|
|
229
296
|
"rgba(208, 220, 174, 1)",
|
|
230
|
-
"nature_reserve",
|
|
231
|
-
"rgba(212, 225, 211, 0.3)",
|
|
232
297
|
"pitch",
|
|
233
298
|
"rgba(69, 150, 7, 0.39)",
|
|
299
|
+
"nature_reserve",
|
|
300
|
+
"rgba(212, 225, 211, 0.3)",
|
|
234
301
|
"golf_course",
|
|
235
302
|
"rgba(236, 240, 198, 1)",
|
|
236
303
|
"transparent"
|
|
@@ -266,7 +333,7 @@
|
|
|
266
333
|
"construction",
|
|
267
334
|
"rgba(242, 242, 235, 1)",
|
|
268
335
|
"railway",
|
|
269
|
-
"rgba(
|
|
336
|
+
"rgba(214, 214, 214, 1)",
|
|
270
337
|
"college",
|
|
271
338
|
"rgba(226, 214, 205, 1)",
|
|
272
339
|
"school",
|
|
@@ -285,7 +352,7 @@
|
|
|
285
352
|
"type": "fill",
|
|
286
353
|
"source": "osm",
|
|
287
354
|
"source-layer": "landuse_areas",
|
|
288
|
-
"minzoom":
|
|
355
|
+
"minzoom": 10,
|
|
289
356
|
"maxzoom": 24,
|
|
290
357
|
"layout": {"visibility": "visible"},
|
|
291
358
|
"paint": {
|
|
@@ -355,7 +422,7 @@
|
|
|
355
422
|
"forest",
|
|
356
423
|
"rgba(193, 208, 158, 1)",
|
|
357
424
|
"wood",
|
|
358
|
-
"
|
|
425
|
+
"rgba(220, 232, 194, 1)",
|
|
359
426
|
"scrub",
|
|
360
427
|
"rgba(199, 222, 194, 1)",
|
|
361
428
|
"transparent"
|
|
@@ -400,7 +467,7 @@
|
|
|
400
467
|
}
|
|
401
468
|
},
|
|
402
469
|
{
|
|
403
|
-
"id": "
|
|
470
|
+
"id": "landuse_areas_z12_developed_open_space_larger",
|
|
404
471
|
"type": "fill",
|
|
405
472
|
"source": "osm",
|
|
406
473
|
"source-layer": "landuse_areas",
|
|
@@ -420,20 +487,61 @@
|
|
|
420
487
|
"rgba(208, 220, 174, 1)",
|
|
421
488
|
"cemetery",
|
|
422
489
|
"rgba(214, 222, 210, 1)",
|
|
423
|
-
"grave_yard",
|
|
424
|
-
"rgba(214, 222, 210, 1)",
|
|
425
490
|
"sports_centre",
|
|
426
491
|
"rgba(208, 220, 174, 1)",
|
|
427
492
|
"stadium",
|
|
428
493
|
"rgba(208, 220, 174, 1)",
|
|
429
494
|
"recreation_ground",
|
|
430
495
|
"rgba(208, 220, 174, 1)",
|
|
496
|
+
"transparent"
|
|
497
|
+
]
|
|
498
|
+
],
|
|
499
|
+
"fill-outline-color": [
|
|
500
|
+
"interpolate",
|
|
501
|
+
["linear"],
|
|
502
|
+
["zoom"],
|
|
503
|
+
0,
|
|
504
|
+
[
|
|
505
|
+
"match",
|
|
506
|
+
["get", "type"],
|
|
507
|
+
"bleachers",
|
|
508
|
+
"rgba(195, 188, 188, 1)",
|
|
509
|
+
"playground",
|
|
510
|
+
"rgba(208, 220, 174, 1)",
|
|
511
|
+
"transparent"
|
|
512
|
+
]
|
|
513
|
+
]
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"id": "landuse_areas_z12_developed_open_space_smaller",
|
|
518
|
+
"type": "fill",
|
|
519
|
+
"source": "osm",
|
|
520
|
+
"source-layer": "landuse_areas",
|
|
521
|
+
"minzoom": 12,
|
|
522
|
+
"maxzoom": 24,
|
|
523
|
+
"layout": {"visibility": "visible"},
|
|
524
|
+
"paint": {
|
|
525
|
+
"fill-color": [
|
|
526
|
+
"interpolate",
|
|
527
|
+
["linear"],
|
|
528
|
+
["zoom"],
|
|
529
|
+
0,
|
|
530
|
+
[
|
|
531
|
+
"match",
|
|
532
|
+
["get", "type"],
|
|
533
|
+
"grave_yard",
|
|
534
|
+
"rgba(214, 222, 210, 1)",
|
|
431
535
|
"picnic_site",
|
|
432
536
|
"rgba(208, 220, 174, 1)",
|
|
433
537
|
"camp_site",
|
|
434
538
|
"rgba(208, 220, 174, 1)",
|
|
435
539
|
"playground",
|
|
436
540
|
"rgba(208, 220, 174, 1)",
|
|
541
|
+
"pitch",
|
|
542
|
+
"rgba(156, 193, 103, 1)",
|
|
543
|
+
"track",
|
|
544
|
+
"rgba(202, 184, 180, 1)",
|
|
437
545
|
"bleachers",
|
|
438
546
|
"rgba(220, 215, 215, 1)",
|
|
439
547
|
"transparent"
|
|
@@ -471,7 +579,7 @@
|
|
|
471
579
|
"type": "line",
|
|
472
580
|
"source": "osm",
|
|
473
581
|
"source-layer": "landuse_areas",
|
|
474
|
-
"minzoom":
|
|
582
|
+
"minzoom": 6,
|
|
475
583
|
"maxzoom": 24,
|
|
476
584
|
"filter": ["==", ["get", "type"], "nature_reserve"],
|
|
477
585
|
"layout": {"visibility": "visible"},
|
|
@@ -525,13 +633,15 @@
|
|
|
525
633
|
"type": "fill",
|
|
526
634
|
"source": "osm",
|
|
527
635
|
"source-layer": "transport_areas",
|
|
636
|
+
"minzoom": 14,
|
|
637
|
+
"maxzoom": 24,
|
|
528
638
|
"filter": [
|
|
529
639
|
"all",
|
|
530
|
-
["in", ["get", "type"], ["literal", ["footway", "pedestrian"]]]
|
|
531
|
-
["==", ["get", "area"], "yes"]
|
|
640
|
+
["in", ["get", "type"], ["literal", ["footway", "pedestrian"]]]
|
|
532
641
|
],
|
|
642
|
+
"layout": {"visibility": "visible"},
|
|
533
643
|
"paint": {
|
|
534
|
-
"fill-color": "rgba(
|
|
644
|
+
"fill-color": "rgba(246, 246, 246, 1)",
|
|
535
645
|
"fill-outline-color": "rgba(230,230,230, 1)"
|
|
536
646
|
}
|
|
537
647
|
},
|
|
@@ -1056,31 +1166,74 @@
|
|
|
1056
1166
|
}
|
|
1057
1167
|
},
|
|
1058
1168
|
{
|
|
1059
|
-
"id": "
|
|
1169
|
+
"id": "transport_traverser",
|
|
1060
1170
|
"type": "fill",
|
|
1061
1171
|
"source": "osm",
|
|
1062
1172
|
"source-layer": "transport_areas",
|
|
1063
|
-
"minzoom":
|
|
1173
|
+
"minzoom": 14,
|
|
1064
1174
|
"maxzoom": 24,
|
|
1065
|
-
"filter": ["==", ["get", "type"], "
|
|
1175
|
+
"filter": ["==", ["get", "type"], "traverser"],
|
|
1066
1176
|
"layout": {"visibility": "visible"},
|
|
1067
1177
|
"paint": {
|
|
1068
|
-
"fill-color": "rgba(
|
|
1069
|
-
"fill-
|
|
1178
|
+
"fill-color": "rgba(189, 141, 125, 0.15)",
|
|
1179
|
+
"fill-opacity": 1,
|
|
1180
|
+
"fill-outline-color": "rgba(208, 200, 200, 1)"
|
|
1070
1181
|
}
|
|
1071
1182
|
},
|
|
1072
1183
|
{
|
|
1073
|
-
"id": "
|
|
1184
|
+
"id": "transport_turntable",
|
|
1074
1185
|
"type": "fill",
|
|
1075
1186
|
"source": "osm",
|
|
1076
1187
|
"source-layer": "transport_areas",
|
|
1077
|
-
"minzoom":
|
|
1188
|
+
"minzoom": 14,
|
|
1189
|
+
"filter": ["==", ["get", "type"], "turntable"],
|
|
1190
|
+
"layout": {"visibility": "visible"},
|
|
1191
|
+
"paint": {
|
|
1192
|
+
"fill-color": "rgba(189, 141, 125, 0.15)",
|
|
1193
|
+
"fill-opacity": 1,
|
|
1194
|
+
"fill-outline-color": "rgba(208, 200, 200, 1)"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"id": "transport_passenger_platform",
|
|
1199
|
+
"type": "fill",
|
|
1200
|
+
"source": "osm",
|
|
1201
|
+
"source-layer": "transport_areas",
|
|
1202
|
+
"minzoom": 14,
|
|
1203
|
+
"filter": ["==", ["get", "type"], "platform"],
|
|
1204
|
+
"layout": {"visibility": "visible"},
|
|
1205
|
+
"paint": {
|
|
1206
|
+
"fill-color": "rgba(117, 101, 101, 0.15)",
|
|
1207
|
+
"fill-opacity": 1,
|
|
1208
|
+
"fill-outline-color": "rgba(208, 200, 200, 1)"
|
|
1209
|
+
}
|
|
1210
|
+
},
|
|
1211
|
+
{
|
|
1212
|
+
"id": "transport_freight_platform",
|
|
1213
|
+
"type": "fill",
|
|
1214
|
+
"source": "osm",
|
|
1215
|
+
"source-layer": "transport_areas",
|
|
1216
|
+
"minzoom": 14,
|
|
1217
|
+
"filter": ["==", ["get", "type"], "loading_ramp"],
|
|
1218
|
+
"layout": {"visibility": "visible"},
|
|
1219
|
+
"paint": {
|
|
1220
|
+
"fill-color": "rgba(117, 101, 101, 0.15)",
|
|
1221
|
+
"fill-opacity": 1,
|
|
1222
|
+
"fill-outline-color": "rgba(208, 200, 200, 1)"
|
|
1223
|
+
}
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"id": "terminals",
|
|
1227
|
+
"type": "fill",
|
|
1228
|
+
"source": "osm",
|
|
1229
|
+
"source-layer": "transport_areas",
|
|
1230
|
+
"minzoom": 11,
|
|
1078
1231
|
"maxzoom": 24,
|
|
1079
|
-
"filter": ["==", ["get", "type"], "
|
|
1232
|
+
"filter": ["==", ["get", "type"], "terminal"],
|
|
1080
1233
|
"layout": {"visibility": "visible"},
|
|
1081
1234
|
"paint": {
|
|
1082
|
-
"fill-color": "rgba(
|
|
1083
|
-
"fill-outline-color": "rgba(
|
|
1235
|
+
"fill-color": "rgba(230, 230, 233, 1)",
|
|
1236
|
+
"fill-outline-color": "rgba(32, 32, 32, .7)"
|
|
1084
1237
|
}
|
|
1085
1238
|
},
|
|
1086
1239
|
{
|
|
@@ -1088,12 +1241,12 @@
|
|
|
1088
1241
|
"type": "line",
|
|
1089
1242
|
"source": "osm",
|
|
1090
1243
|
"source-layer": "transport_lines",
|
|
1091
|
-
"minzoom":
|
|
1244
|
+
"minzoom": 11,
|
|
1092
1245
|
"maxzoom": 24,
|
|
1093
1246
|
"filter": ["==", ["get", "type"], "taxiway"],
|
|
1094
1247
|
"layout": {"visibility": "visible"},
|
|
1095
1248
|
"paint": {
|
|
1096
|
-
"line-color": "rgba(
|
|
1249
|
+
"line-color": "rgba(200, 200, 200, 1)",
|
|
1097
1250
|
"line-width": [
|
|
1098
1251
|
"interpolate",
|
|
1099
1252
|
["linear"],
|
|
@@ -1103,7 +1256,7 @@
|
|
|
1103
1256
|
13,
|
|
1104
1257
|
1.5,
|
|
1105
1258
|
18,
|
|
1106
|
-
|
|
1259
|
+
8
|
|
1107
1260
|
]
|
|
1108
1261
|
}
|
|
1109
1262
|
},
|
|
@@ -1112,13 +1265,13 @@
|
|
|
1112
1265
|
"type": "line",
|
|
1113
1266
|
"source": "osm",
|
|
1114
1267
|
"source-layer": "transport_lines",
|
|
1115
|
-
"minzoom":
|
|
1268
|
+
"minzoom": 10,
|
|
1116
1269
|
"maxzoom": 24,
|
|
1117
1270
|
"filter": ["==", ["get", "type"], "runway"],
|
|
1118
1271
|
"layout": {"visibility": "visible"},
|
|
1119
1272
|
"paint": {
|
|
1120
|
-
"line-color": "rgba(
|
|
1121
|
-
"line-width": ["interpolate", ["
|
|
1273
|
+
"line-color": "rgba(200, 200, 200, 1)",
|
|
1274
|
+
"line-width": ["interpolate", ["exponential", 1.8], ["zoom"], 12, 1.5, 14, 15]
|
|
1122
1275
|
}
|
|
1123
1276
|
},
|
|
1124
1277
|
{
|
|
@@ -3218,10 +3371,10 @@
|
|
|
3218
3371
|
"interpolate",
|
|
3219
3372
|
["exponential", 1.5],
|
|
3220
3373
|
["zoom"],
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3374
|
+
14,
|
|
3375
|
+
2,
|
|
3376
|
+
24,
|
|
3377
|
+
6
|
|
3225
3378
|
]
|
|
3226
3379
|
}
|
|
3227
3380
|
},
|
|
@@ -3586,12 +3739,12 @@
|
|
|
3586
3739
|
"line-color": "#ffffff",
|
|
3587
3740
|
"line-width": [
|
|
3588
3741
|
"interpolate",
|
|
3589
|
-
["exponential",
|
|
3742
|
+
["exponential", 2],
|
|
3590
3743
|
["zoom"],
|
|
3591
|
-
|
|
3592
|
-
|
|
3744
|
+
14,
|
|
3745
|
+
1.5,
|
|
3593
3746
|
18,
|
|
3594
|
-
|
|
3747
|
+
14
|
|
3595
3748
|
]
|
|
3596
3749
|
}
|
|
3597
3750
|
},
|
|
@@ -3939,7 +4092,8 @@
|
|
|
3939
4092
|
"filter": [
|
|
3940
4093
|
"all",
|
|
3941
4094
|
["in", ["get", "type"], ["literal", ["miniature", "narrow_gauge"]]],
|
|
3942
|
-
["!", ["in", ["get", "service"], ["literal", ["siding", "yard"]]]]
|
|
4095
|
+
["!", ["in", ["get", "service"], ["literal", ["siding", "yard"]]]],
|
|
4096
|
+
["==", ["get", "tunnel"], 0]
|
|
3943
4097
|
],
|
|
3944
4098
|
"layout": {"visibility": "visible"},
|
|
3945
4099
|
"paint": {
|
|
@@ -4047,7 +4201,8 @@
|
|
|
4047
4201
|
["get", "type"],
|
|
4048
4202
|
["literal", ["abandoned", "dismantled", "disused", "razed"]]
|
|
4049
4203
|
],
|
|
4050
|
-
["!", ["in", ["get", "service"], ["literal", ["siding", "yard"]]]]
|
|
4204
|
+
["!", ["in", ["get", "service"], ["literal", ["siding", "yard"]]]],
|
|
4205
|
+
["==", ["get", "tunnel"], 0]
|
|
4051
4206
|
],
|
|
4052
4207
|
"layout": {"visibility": "visible"},
|
|
4053
4208
|
"paint": {
|
|
@@ -4130,7 +4285,8 @@
|
|
|
4130
4285
|
["literal", ["light_rail", "preserved", "rail"]]
|
|
4131
4286
|
],
|
|
4132
4287
|
["!", ["in", ["get", "service"], ["literal", ["siding", "yard"]]]],
|
|
4133
|
-
["==", ["get", "usage"], "main"]
|
|
4288
|
+
["==", ["get", "usage"], "main"],
|
|
4289
|
+
["==", ["get", "tunnel"], 0]
|
|
4134
4290
|
],
|
|
4135
4291
|
"layout": {
|
|
4136
4292
|
"visibility": "visible",
|
|
@@ -4143,7 +4299,7 @@
|
|
|
4143
4299
|
}
|
|
4144
4300
|
},
|
|
4145
4301
|
{
|
|
4146
|
-
"id": "roads_rail-
|
|
4302
|
+
"id": "roads_rail-tunnel",
|
|
4147
4303
|
"type": "line",
|
|
4148
4304
|
"source": "osm",
|
|
4149
4305
|
"source-layer": "transport_lines",
|
|
@@ -4156,44 +4312,42 @@
|
|
|
4156
4312
|
["get", "type"],
|
|
4157
4313
|
["literal", ["light_rail", "preserved", "rail"]]
|
|
4158
4314
|
],
|
|
4159
|
-
["
|
|
4160
|
-
["==", ["get", "usage"], "main"]
|
|
4315
|
+
["==", ["get", "tunnel"], 1]
|
|
4161
4316
|
],
|
|
4162
4317
|
"layout": {
|
|
4163
4318
|
"visibility": "visible",
|
|
4164
|
-
"line-cap": "
|
|
4319
|
+
"line-cap": "round",
|
|
4165
4320
|
"line-join": "round"
|
|
4166
4321
|
},
|
|
4167
4322
|
"paint": {
|
|
4168
|
-
"line-color":
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
20,
|
|
4186
|
-
3
|
|
4323
|
+
"line-color": "rgba(201, 211, 218, 1)",
|
|
4324
|
+
"line-width": ["interpolate", ["linear"], ["zoom"], 7, 3, 12, 4, 20, 5]
|
|
4325
|
+
}
|
|
4326
|
+
},
|
|
4327
|
+
{
|
|
4328
|
+
"id": "roads_rail-bridge",
|
|
4329
|
+
"type": "line",
|
|
4330
|
+
"source": "osm",
|
|
4331
|
+
"source-layer": "transport_lines",
|
|
4332
|
+
"minzoom": 7,
|
|
4333
|
+
"maxzoom": 24,
|
|
4334
|
+
"filter": [
|
|
4335
|
+
"all",
|
|
4336
|
+
[
|
|
4337
|
+
"in",
|
|
4338
|
+
["get", "type"],
|
|
4339
|
+
["literal", ["light_rail", "preserved", "rail"]]
|
|
4187
4340
|
],
|
|
4188
|
-
"
|
|
4189
|
-
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4341
|
+
["==", ["get", "bridge"], 1]
|
|
4342
|
+
],
|
|
4343
|
+
"layout": {
|
|
4344
|
+
"visibility": "visible",
|
|
4345
|
+
"line-cap": "round",
|
|
4346
|
+
"line-join": "round"
|
|
4347
|
+
},
|
|
4348
|
+
"paint": {
|
|
4349
|
+
"line-color": "rgba(148, 159, 168, 1)",
|
|
4350
|
+
"line-width": ["interpolate", ["linear"], ["zoom"], 7, 4, 12, 7, 20, 10]
|
|
4197
4351
|
}
|
|
4198
4352
|
},
|
|
4199
4353
|
{
|
|
@@ -4264,7 +4418,8 @@
|
|
|
4264
4418
|
["literal", ["light_rail", "preserved", "rail"]]
|
|
4265
4419
|
],
|
|
4266
4420
|
["!", ["in", ["get", "service"], ["literal", ["siding", "yard"]]]],
|
|
4267
|
-
["!=", ["get", "usage"], "main"]
|
|
4421
|
+
["!=", ["get", "usage"], "main"],
|
|
4422
|
+
["==", ["get", "tunnel"], 0]
|
|
4268
4423
|
],
|
|
4269
4424
|
"layout": {
|
|
4270
4425
|
"visibility": "visible",
|
|
@@ -4284,6 +4439,114 @@
|
|
|
4284
4439
|
"line-width": ["interpolate", ["linear"], ["zoom"], 7, 3, 12, 4, 20, 5]
|
|
4285
4440
|
}
|
|
4286
4441
|
},
|
|
4442
|
+
{
|
|
4443
|
+
"id": "roads_rail-main-dash",
|
|
4444
|
+
"type": "line",
|
|
4445
|
+
"source": "osm",
|
|
4446
|
+
"source-layer": "transport_lines",
|
|
4447
|
+
"minzoom": 7,
|
|
4448
|
+
"maxzoom": 24,
|
|
4449
|
+
"filter": [
|
|
4450
|
+
"all",
|
|
4451
|
+
[
|
|
4452
|
+
"in",
|
|
4453
|
+
["get", "type"],
|
|
4454
|
+
["literal", ["light_rail", "preserved", "rail"]]
|
|
4455
|
+
],
|
|
4456
|
+
["!", ["in", ["get", "service"], ["literal", ["siding", "yard"]]]],
|
|
4457
|
+
["==", ["get", "usage"], "main"],
|
|
4458
|
+
["==", ["get", "tunnel"], 0]
|
|
4459
|
+
],
|
|
4460
|
+
"layout": {
|
|
4461
|
+
"visibility": "visible",
|
|
4462
|
+
"line-cap": "square",
|
|
4463
|
+
"line-join": "round"
|
|
4464
|
+
},
|
|
4465
|
+
"paint": {
|
|
4466
|
+
"line-color": [
|
|
4467
|
+
"interpolate",
|
|
4468
|
+
["linear"],
|
|
4469
|
+
["zoom"],
|
|
4470
|
+
6,
|
|
4471
|
+
"rgba(223, 223, 223, 1)",
|
|
4472
|
+
15,
|
|
4473
|
+
"rgba(255, 255, 255, 1)"
|
|
4474
|
+
],
|
|
4475
|
+
"line-width": [
|
|
4476
|
+
"interpolate",
|
|
4477
|
+
["linear"],
|
|
4478
|
+
["zoom"],
|
|
4479
|
+
7,
|
|
4480
|
+
1.5,
|
|
4481
|
+
12,
|
|
4482
|
+
2,
|
|
4483
|
+
20,
|
|
4484
|
+
3
|
|
4485
|
+
],
|
|
4486
|
+
"line-dasharray": [
|
|
4487
|
+
"step",
|
|
4488
|
+
["zoom"],
|
|
4489
|
+
["literal", [7, 7]],
|
|
4490
|
+
12,
|
|
4491
|
+
["literal", [5, 5]],
|
|
4492
|
+
15,
|
|
4493
|
+
["literal", [4, 4]]
|
|
4494
|
+
]
|
|
4495
|
+
}
|
|
4496
|
+
},
|
|
4497
|
+
{
|
|
4498
|
+
"id": "roads_rail-dash-tunnel",
|
|
4499
|
+
"type": "line",
|
|
4500
|
+
"source": "osm",
|
|
4501
|
+
"source-layer": "transport_lines",
|
|
4502
|
+
"minzoom": 7,
|
|
4503
|
+
"maxzoom": 24,
|
|
4504
|
+
"filter": [
|
|
4505
|
+
"all",
|
|
4506
|
+
[
|
|
4507
|
+
"in",
|
|
4508
|
+
["get", "type"],
|
|
4509
|
+
["literal", ["light_rail", "preserved", "rail"]]
|
|
4510
|
+
],
|
|
4511
|
+
["==", ["get", "tunnel"], 1]
|
|
4512
|
+
],
|
|
4513
|
+
"layout": {
|
|
4514
|
+
"visibility": "visible",
|
|
4515
|
+
"line-cap": "round",
|
|
4516
|
+
"line-join": "round"
|
|
4517
|
+
},
|
|
4518
|
+
"paint": {
|
|
4519
|
+
"line-color": [
|
|
4520
|
+
"interpolate",
|
|
4521
|
+
["linear"],
|
|
4522
|
+
["zoom"],
|
|
4523
|
+
6,
|
|
4524
|
+
"rgba(223, 223, 223, 1)",
|
|
4525
|
+
15,
|
|
4526
|
+
"rgba(255, 255, 255, 1)"
|
|
4527
|
+
],
|
|
4528
|
+
"line-width": [
|
|
4529
|
+
"interpolate",
|
|
4530
|
+
["linear"],
|
|
4531
|
+
["zoom"],
|
|
4532
|
+
7,
|
|
4533
|
+
1,
|
|
4534
|
+
12,
|
|
4535
|
+
1.5,
|
|
4536
|
+
20,
|
|
4537
|
+
2
|
|
4538
|
+
],
|
|
4539
|
+
"line-dasharray": [
|
|
4540
|
+
"step",
|
|
4541
|
+
["zoom"],
|
|
4542
|
+
["literal", [5, 5]],
|
|
4543
|
+
12,
|
|
4544
|
+
["literal", [3, 3]],
|
|
4545
|
+
15,
|
|
4546
|
+
["literal", [2, 2]]
|
|
4547
|
+
]
|
|
4548
|
+
}
|
|
4549
|
+
},
|
|
4287
4550
|
{
|
|
4288
4551
|
"id": "roads_rail-dash",
|
|
4289
4552
|
"type": "line",
|
|
@@ -4299,7 +4562,8 @@
|
|
|
4299
4562
|
["literal", ["light_rail", "preserved", "rail"]]
|
|
4300
4563
|
],
|
|
4301
4564
|
["!", ["in", ["get", "service"], ["literal", ["siding", "yard"]]]],
|
|
4302
|
-
["!=", ["get", "usage"], "main"]
|
|
4565
|
+
["!=", ["get", "usage"], "main"],
|
|
4566
|
+
["==", ["get", "tunnel"], 0]
|
|
4303
4567
|
],
|
|
4304
4568
|
"layout": {
|
|
4305
4569
|
"visibility": "visible",
|
|
@@ -5321,7 +5585,7 @@
|
|
|
5321
5585
|
"id": "water_pointlabels_ocean_sea",
|
|
5322
5586
|
"type": "symbol",
|
|
5323
5587
|
"source": "osm",
|
|
5324
|
-
"source-layer": "
|
|
5588
|
+
"source-layer": "place_points_centroids",
|
|
5325
5589
|
"minzoom": 0,
|
|
5326
5590
|
"maxzoom": 24,
|
|
5327
5591
|
"filter": ["in", ["get", "type"], ["literal", ["ocean", "sea"]]],
|
|
@@ -5456,7 +5720,7 @@
|
|
|
5456
5720
|
"id": "landuse_areaslabels_park",
|
|
5457
5721
|
"type": "symbol",
|
|
5458
5722
|
"source": "osm",
|
|
5459
|
-
"source-layer": "
|
|
5723
|
+
"source-layer": "landuse_points_centroids",
|
|
5460
5724
|
"minzoom": 14,
|
|
5461
5725
|
"maxzoom": 24,
|
|
5462
5726
|
"filter": [
|
|
@@ -5503,7 +5767,7 @@
|
|
|
5503
5767
|
"id": "landuse_areaslabels_farming",
|
|
5504
5768
|
"type": "symbol",
|
|
5505
5769
|
"source": "osm",
|
|
5506
|
-
"source-layer": "
|
|
5770
|
+
"source-layer": "landuse_points_centroids",
|
|
5507
5771
|
"minzoom": 14,
|
|
5508
5772
|
"maxzoom": 24,
|
|
5509
5773
|
"filter": [
|
|
@@ -5537,14 +5801,10 @@
|
|
|
5537
5801
|
"id": "landuse_areaslabels_forest",
|
|
5538
5802
|
"type": "symbol",
|
|
5539
5803
|
"source": "osm",
|
|
5540
|
-
"source-layer": "
|
|
5804
|
+
"source-layer": "landuse_points_centroids",
|
|
5541
5805
|
"minzoom": 14,
|
|
5542
5806
|
"maxzoom": 24,
|
|
5543
|
-
"filter": [
|
|
5544
|
-
"in",
|
|
5545
|
-
["get", "type"],
|
|
5546
|
-
["literal", ["forest", "nature_reserve", "wood"]]
|
|
5547
|
-
],
|
|
5807
|
+
"filter": ["in", ["get", "type"], ["literal", ["forest", "wood"]]],
|
|
5548
5808
|
"layout": {
|
|
5549
5809
|
"text-field": ["get", "name"],
|
|
5550
5810
|
"text-size": 11,
|
|
@@ -5556,11 +5816,30 @@
|
|
|
5556
5816
|
"text-halo-width": 1
|
|
5557
5817
|
}
|
|
5558
5818
|
},
|
|
5819
|
+
{
|
|
5820
|
+
"id": "landuse_areaslabels_nature_reserve",
|
|
5821
|
+
"type": "symbol",
|
|
5822
|
+
"source": "osm",
|
|
5823
|
+
"source-layer": "landuse_points_centroids",
|
|
5824
|
+
"minzoom": 6,
|
|
5825
|
+
"maxzoom": 12,
|
|
5826
|
+
"filter": ["in", ["get", "type"], ["literal", ["nature_reserve"]]],
|
|
5827
|
+
"layout": {
|
|
5828
|
+
"text-size": 24,
|
|
5829
|
+
"text-field": ["get", "name"],
|
|
5830
|
+
"text-font": ["OpenHistorical"]
|
|
5831
|
+
},
|
|
5832
|
+
"paint": {
|
|
5833
|
+
"text-color": "rgba(95, 107, 71, 1)",
|
|
5834
|
+
"text-halo-color": "rgba(201, 213, 190, 1)",
|
|
5835
|
+
"text-halo-width": 1
|
|
5836
|
+
}
|
|
5837
|
+
},
|
|
5559
5838
|
{
|
|
5560
5839
|
"id": "landuse_areaslabels_school",
|
|
5561
5840
|
"type": "symbol",
|
|
5562
5841
|
"source": "osm",
|
|
5563
|
-
"source-layer": "
|
|
5842
|
+
"source-layer": "landuse_points_centroids",
|
|
5564
5843
|
"minzoom": 14,
|
|
5565
5844
|
"maxzoom": 24,
|
|
5566
5845
|
"filter": [
|
|
@@ -5579,11 +5858,30 @@
|
|
|
5579
5858
|
"text-halo-width": 1
|
|
5580
5859
|
}
|
|
5581
5860
|
},
|
|
5861
|
+
{
|
|
5862
|
+
"id": "other_areaslabels_military",
|
|
5863
|
+
"type": "symbol",
|
|
5864
|
+
"source": "osm",
|
|
5865
|
+
"source-layer": "other_points_centroids",
|
|
5866
|
+
"minzoom": 12,
|
|
5867
|
+
"maxzoom": 24,
|
|
5868
|
+
"filter": ["==", ["get", "class"], "military"],
|
|
5869
|
+
"layout": {
|
|
5870
|
+
"text-field": ["get", "name"],
|
|
5871
|
+
"text-size": 13,
|
|
5872
|
+
"text-font": ["OpenHistorical"]
|
|
5873
|
+
},
|
|
5874
|
+
"paint": {
|
|
5875
|
+
"text-color": "rgba(180, 50, 50, 1)",
|
|
5876
|
+
"text-halo-color": "rgba(255, 255, 255, 1)",
|
|
5877
|
+
"text-halo-width": 1
|
|
5878
|
+
}
|
|
5879
|
+
},
|
|
5582
5880
|
{
|
|
5583
5881
|
"id": "landuse_areaslabels_z8glacier",
|
|
5584
5882
|
"type": "symbol",
|
|
5585
5883
|
"source": "osm",
|
|
5586
|
-
"source-layer": "
|
|
5884
|
+
"source-layer": "landuse_points_centroids",
|
|
5587
5885
|
"minzoom": 10,
|
|
5588
5886
|
"maxzoom": 22,
|
|
5589
5887
|
"filter": ["==", ["get", "type"], "glacier"],
|
|
@@ -5614,7 +5912,7 @@
|
|
|
5614
5912
|
"id": "placearea_label",
|
|
5615
5913
|
"type": "symbol",
|
|
5616
5914
|
"source": "osm",
|
|
5617
|
-
"source-layer": "
|
|
5915
|
+
"source-layer": "place_points_centroids",
|
|
5618
5916
|
"minzoom": 14,
|
|
5619
5917
|
"maxzoom": 24,
|
|
5620
5918
|
"filter": ["==", ["get", "type"], "square"],
|
|
@@ -5641,7 +5939,7 @@
|
|
|
5641
5939
|
"id": "points_of_interest_frombuildings",
|
|
5642
5940
|
"type": "symbol",
|
|
5643
5941
|
"source": "osm",
|
|
5644
|
-
"source-layer": "
|
|
5942
|
+
"source-layer": "buildings_points_centroids",
|
|
5645
5943
|
"minzoom": 16,
|
|
5646
5944
|
"filter": ["!=", ["get", "type"], "parking"],
|
|
5647
5945
|
"layout": {
|
|
@@ -5666,7 +5964,7 @@
|
|
|
5666
5964
|
"id": "points_of_interest_fromareasz14-centroids",
|
|
5667
5965
|
"type": "symbol",
|
|
5668
5966
|
"source": "osm",
|
|
5669
|
-
"source-layer": "
|
|
5967
|
+
"source-layer": "amenity_points_centroids",
|
|
5670
5968
|
"minzoom": 14,
|
|
5671
5969
|
"maxzoom": 16,
|
|
5672
5970
|
"filter": [
|
|
@@ -5710,7 +6008,7 @@
|
|
|
5710
6008
|
"id": "points_of_interest_fromareasz14",
|
|
5711
6009
|
"type": "symbol",
|
|
5712
6010
|
"source": "osm",
|
|
5713
|
-
"source-layer": "
|
|
6011
|
+
"source-layer": "amenity_points_centroids",
|
|
5714
6012
|
"minzoom": 14,
|
|
5715
6013
|
"maxzoom": 16,
|
|
5716
6014
|
"filter": [
|
|
@@ -5754,7 +6052,7 @@
|
|
|
5754
6052
|
"id": "points_of_interest_fromareas",
|
|
5755
6053
|
"type": "symbol",
|
|
5756
6054
|
"source": "osm",
|
|
5757
|
-
"source-layer": "
|
|
6055
|
+
"source-layer": "amenity_points_centroids",
|
|
5758
6056
|
"minzoom": 16,
|
|
5759
6057
|
"maxzoom": 24,
|
|
5760
6058
|
"filter": ["all"],
|
|
@@ -5827,7 +6125,7 @@
|
|
|
5827
6125
|
"id": "points_of_interest_other",
|
|
5828
6126
|
"type": "symbol",
|
|
5829
6127
|
"source": "osm",
|
|
5830
|
-
"source-layer": "
|
|
6128
|
+
"source-layer": "other_points_centroids",
|
|
5831
6129
|
"minzoom": 15,
|
|
5832
6130
|
"maxzoom": 24,
|
|
5833
6131
|
"filter": ["!", ["in", ["get", "type"], ["literal", ["artwork"]]]],
|
|
@@ -5895,7 +6193,7 @@
|
|
|
5895
6193
|
"id": "points_of_interest_amenity",
|
|
5896
6194
|
"type": "symbol",
|
|
5897
6195
|
"source": "osm",
|
|
5898
|
-
"source-layer": "
|
|
6196
|
+
"source-layer": "amenity_points_centroids",
|
|
5899
6197
|
"minzoom": 15,
|
|
5900
6198
|
"maxzoom": 24,
|
|
5901
6199
|
"layout": {
|
|
@@ -5931,7 +6229,7 @@
|
|
|
5931
6229
|
"id": "points_of_interest_other_archaeology",
|
|
5932
6230
|
"type": "symbol",
|
|
5933
6231
|
"source": "osm",
|
|
5934
|
-
"source-layer": "
|
|
6232
|
+
"source-layer": "other_points_centroids",
|
|
5935
6233
|
"minzoom": 14,
|
|
5936
6234
|
"maxzoom": 24,
|
|
5937
6235
|
"filter": ["==", ["get", "type"], "archaeological_site"],
|
|
@@ -5967,7 +6265,7 @@
|
|
|
5967
6265
|
"id": "points_of_interest_other_artwork",
|
|
5968
6266
|
"type": "symbol",
|
|
5969
6267
|
"source": "osm",
|
|
5970
|
-
"source-layer": "
|
|
6268
|
+
"source-layer": "other_points_centroids",
|
|
5971
6269
|
"minzoom": 15,
|
|
5972
6270
|
"maxzoom": 24,
|
|
5973
6271
|
"filter": ["==", ["get", "type"], "artwork"],
|
|
@@ -6003,7 +6301,7 @@
|
|
|
6003
6301
|
"id": "points_powertower",
|
|
6004
6302
|
"type": "symbol",
|
|
6005
6303
|
"source": "osm",
|
|
6006
|
-
"source-layer": "
|
|
6304
|
+
"source-layer": "other_points_centroids",
|
|
6007
6305
|
"minzoom": 15,
|
|
6008
6306
|
"maxzoom": 24,
|
|
6009
6307
|
"filter": ["==", ["get", "type"], "tower"],
|
|
@@ -6017,17 +6315,17 @@
|
|
|
6017
6315
|
"id": "points_airport",
|
|
6018
6316
|
"type": "symbol",
|
|
6019
6317
|
"source": "osm",
|
|
6020
|
-
"source-layer": "
|
|
6318
|
+
"source-layer": "transport_points_centroids",
|
|
6021
6319
|
"minzoom": 10,
|
|
6022
6320
|
"maxzoom": 14,
|
|
6023
6321
|
"filter": ["==", ["get", "type"], "aerodrome"],
|
|
6024
6322
|
"layout": {"icon-image": "airport-18", "text-font": ["OpenHistorical"]}
|
|
6025
6323
|
},
|
|
6026
6324
|
{
|
|
6027
|
-
"id": "
|
|
6325
|
+
"id": "transport_points_centroids",
|
|
6028
6326
|
"type": "symbol",
|
|
6029
6327
|
"source": "osm",
|
|
6030
|
-
"source-layer": "
|
|
6328
|
+
"source-layer": "transport_points_centroids",
|
|
6031
6329
|
"minzoom": 14,
|
|
6032
6330
|
"maxzoom": 24,
|
|
6033
6331
|
"filter": ["all"],
|
|
@@ -6054,7 +6352,7 @@
|
|
|
6054
6352
|
"id": "points_placeofworshipother",
|
|
6055
6353
|
"type": "symbol",
|
|
6056
6354
|
"source": "osm",
|
|
6057
|
-
"source-layer": "
|
|
6355
|
+
"source-layer": "buildings_points_centroids",
|
|
6058
6356
|
"filter": [
|
|
6059
6357
|
"all",
|
|
6060
6358
|
["==", ["get", "type"], "place_of_worship"],
|
|
@@ -6077,7 +6375,7 @@
|
|
|
6077
6375
|
"id": "points_religion",
|
|
6078
6376
|
"type": "symbol",
|
|
6079
6377
|
"source": "osm",
|
|
6080
|
-
"source-layer": "
|
|
6378
|
+
"source-layer": "buildings_points_centroids",
|
|
6081
6379
|
"filter": ["all"],
|
|
6082
6380
|
"layout": {
|
|
6083
6381
|
"icon-image": "{religion}-18",
|
|
@@ -6089,7 +6387,7 @@
|
|
|
6089
6387
|
"id": "points_fromlanduse-z14",
|
|
6090
6388
|
"type": "symbol",
|
|
6091
6389
|
"source": "osm",
|
|
6092
|
-
"source-layer": "
|
|
6390
|
+
"source-layer": "landuse_points_centroids",
|
|
6093
6391
|
"minzoom": 14,
|
|
6094
6392
|
"filter": ["==", ["get", "type"], "peak"],
|
|
6095
6393
|
"layout": {
|
|
@@ -6111,7 +6409,7 @@
|
|
|
6111
6409
|
"id": "points_fromlanduse",
|
|
6112
6410
|
"type": "symbol",
|
|
6113
6411
|
"source": "osm",
|
|
6114
|
-
"source-layer": "
|
|
6412
|
+
"source-layer": "landuse_points_centroids",
|
|
6115
6413
|
"minzoom": 16,
|
|
6116
6414
|
"layout": {
|
|
6117
6415
|
"icon-image": "{type}-18",
|
|
@@ -6143,7 +6441,7 @@
|
|
|
6143
6441
|
"id": "points_fromlanduseareas",
|
|
6144
6442
|
"type": "symbol",
|
|
6145
6443
|
"source": "osm",
|
|
6146
|
-
"source-layer": "
|
|
6444
|
+
"source-layer": "landuse_points_centroids",
|
|
6147
6445
|
"minzoom": 16,
|
|
6148
6446
|
"filter": [
|
|
6149
6447
|
"!",
|
|
@@ -6159,7 +6457,7 @@
|
|
|
6159
6457
|
"id": "points_of_interest_shop",
|
|
6160
6458
|
"type": "symbol",
|
|
6161
6459
|
"source": "osm",
|
|
6162
|
-
"source-layer": "
|
|
6460
|
+
"source-layer": "buildings_points_centroids",
|
|
6163
6461
|
"minzoom": 16,
|
|
6164
6462
|
"maxzoom": 24,
|
|
6165
6463
|
"filter": ["has", "shop"],
|
|
@@ -6251,7 +6549,7 @@
|
|
|
6251
6549
|
"id": "county_labels_z11",
|
|
6252
6550
|
"type": "symbol",
|
|
6253
6551
|
"source": "osm",
|
|
6254
|
-
"source-layer": "
|
|
6552
|
+
"source-layer": "place_points_centroids",
|
|
6255
6553
|
"minzoom": 8,
|
|
6256
6554
|
"maxzoom": 20,
|
|
6257
6555
|
"filter": ["==", ["get", "type"], "county"],
|
|
@@ -6285,7 +6583,7 @@
|
|
|
6285
6583
|
"id": "city_locality_labels_other_z11",
|
|
6286
6584
|
"type": "symbol",
|
|
6287
6585
|
"source": "osm",
|
|
6288
|
-
"source-layer": "
|
|
6586
|
+
"source-layer": "place_points_centroids",
|
|
6289
6587
|
"minzoom": 15,
|
|
6290
6588
|
"maxzoom": 20,
|
|
6291
6589
|
"filter": ["in", ["get", "type"], ["literal", ["locality"]]],
|
|
@@ -6316,7 +6614,7 @@
|
|
|
6316
6614
|
"id": "city_labels_other_z11",
|
|
6317
6615
|
"type": "symbol",
|
|
6318
6616
|
"source": "osm",
|
|
6319
|
-
"source-layer": "
|
|
6617
|
+
"source-layer": "place_points_centroids",
|
|
6320
6618
|
"minzoom": 11,
|
|
6321
6619
|
"maxzoom": 20,
|
|
6322
6620
|
"filter": [
|
|
@@ -6351,7 +6649,7 @@
|
|
|
6351
6649
|
"id": "city_labels_town_z8",
|
|
6352
6650
|
"type": "symbol",
|
|
6353
6651
|
"source": "osm",
|
|
6354
|
-
"source-layer": "
|
|
6652
|
+
"source-layer": "place_points_centroids",
|
|
6355
6653
|
"minzoom": 8,
|
|
6356
6654
|
"maxzoom": 20,
|
|
6357
6655
|
"filter": ["==", ["get", "type"], "town"],
|
|
@@ -6382,7 +6680,7 @@
|
|
|
6382
6680
|
"id": "city_labels_z11",
|
|
6383
6681
|
"type": "symbol",
|
|
6384
6682
|
"source": "osm",
|
|
6385
|
-
"source-layer": "
|
|
6683
|
+
"source-layer": "place_points_centroids",
|
|
6386
6684
|
"minzoom": 11,
|
|
6387
6685
|
"maxzoom": 20,
|
|
6388
6686
|
"filter": ["==", ["get", "type"], "city"],
|
|
@@ -6413,7 +6711,7 @@
|
|
|
6413
6711
|
"id": "city_labels_z6",
|
|
6414
6712
|
"type": "symbol",
|
|
6415
6713
|
"source": "osm",
|
|
6416
|
-
"source-layer": "
|
|
6714
|
+
"source-layer": "place_points_centroids",
|
|
6417
6715
|
"minzoom": 6,
|
|
6418
6716
|
"maxzoom": 11,
|
|
6419
6717
|
"filter": [
|
|
@@ -6443,7 +6741,7 @@
|
|
|
6443
6741
|
"id": "city_capital_labels_z6",
|
|
6444
6742
|
"type": "symbol",
|
|
6445
6743
|
"source": "osm",
|
|
6446
|
-
"source-layer": "
|
|
6744
|
+
"source-layer": "place_points_centroids",
|
|
6447
6745
|
"minzoom": 6,
|
|
6448
6746
|
"maxzoom": 11,
|
|
6449
6747
|
"filter": [
|
|
@@ -6523,7 +6821,7 @@
|
|
|
6523
6821
|
"id": "state_points_labels",
|
|
6524
6822
|
"type": "symbol",
|
|
6525
6823
|
"source": "osm",
|
|
6526
|
-
"source-layer": "
|
|
6824
|
+
"source-layer": "place_points_centroids",
|
|
6527
6825
|
"minzoom": 5,
|
|
6528
6826
|
"maxzoom": 20,
|
|
6529
6827
|
"filter": ["in", ["get", "type"], ["literal", ["state", "territory"]]],
|
|
@@ -6655,7 +6953,7 @@
|
|
|
6655
6953
|
"id": "country_points_labels",
|
|
6656
6954
|
"type": "symbol",
|
|
6657
6955
|
"source": "osm",
|
|
6658
|
-
"source-layer": "
|
|
6956
|
+
"source-layer": "place_points_centroids",
|
|
6659
6957
|
"minzoom": 0,
|
|
6660
6958
|
"maxzoom": 12,
|
|
6661
6959
|
"filter": ["==", ["get", "type"], "country"],
|
|
@@ -6712,5 +7010,6 @@
|
|
|
6712
7010
|
}
|
|
6713
7011
|
}
|
|
6714
7012
|
],
|
|
7013
|
+
"attribution": "<a href=\"https://www.openhistoricalmap.org/\">OpenHistoricalMap</a>",
|
|
6715
7014
|
"id": "ab271ed3-6fe4-403a-b5ae-07113f8c57ab"
|
|
6716
7015
|
}
|