@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
package/dist/ohm.styles.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
ohmVectorStyles = {
|
|
4
4
|
"Historical": {
|
|
5
5
|
"version": 8,
|
|
6
|
-
"name": "
|
|
6
|
+
"name": "ohm-historical",
|
|
7
7
|
"metadata": {
|
|
8
8
|
"maputnik:renderer": "mbgljs"
|
|
9
9
|
},
|
|
@@ -216,16 +216,82 @@ ohmVectorStyles = {
|
|
|
216
216
|
"visibility": "visible"
|
|
217
217
|
},
|
|
218
218
|
"paint": {
|
|
219
|
-
"fill-color": "rgba(
|
|
219
|
+
"fill-color": "rgba(255, 0, 0, 0.03)"
|
|
220
220
|
}
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
|
-
"id": "
|
|
223
|
+
"id": "military-pattern",
|
|
224
|
+
"type": "fill",
|
|
225
|
+
"source": "osm",
|
|
226
|
+
"source-layer": "other_areas",
|
|
227
|
+
"filter": [
|
|
228
|
+
"==",
|
|
229
|
+
[
|
|
230
|
+
"get",
|
|
231
|
+
"class"
|
|
232
|
+
],
|
|
233
|
+
"military"
|
|
234
|
+
],
|
|
235
|
+
"layout": {
|
|
236
|
+
"visibility": "visible"
|
|
237
|
+
},
|
|
238
|
+
"paint": {
|
|
239
|
+
"fill-pattern": "military-fill"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"id": "aero_aerodrome_area",
|
|
244
|
+
"type": "fill",
|
|
245
|
+
"source": "osm",
|
|
246
|
+
"source-layer": "transport_areas",
|
|
247
|
+
"minzoom": 10,
|
|
248
|
+
"maxzoom": 24,
|
|
249
|
+
"filter": [
|
|
250
|
+
"==",
|
|
251
|
+
[
|
|
252
|
+
"get",
|
|
253
|
+
"type"
|
|
254
|
+
],
|
|
255
|
+
"aerodrome"
|
|
256
|
+
],
|
|
257
|
+
"layout": {
|
|
258
|
+
"visibility": "visible"
|
|
259
|
+
},
|
|
260
|
+
"paint": {
|
|
261
|
+
"fill-color": "rgba(245, 245, 240, 1)",
|
|
262
|
+
"fill-outline-color": "rgba(214, 212, 212, 1)"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"id": "aero_heliport_area",
|
|
224
267
|
"type": "fill",
|
|
225
268
|
"source": "osm",
|
|
226
269
|
"source-layer": "transport_areas",
|
|
227
270
|
"minzoom": 12,
|
|
228
271
|
"maxzoom": 24,
|
|
272
|
+
"filter": [
|
|
273
|
+
"==",
|
|
274
|
+
[
|
|
275
|
+
"get",
|
|
276
|
+
"type"
|
|
277
|
+
],
|
|
278
|
+
"helipad"
|
|
279
|
+
],
|
|
280
|
+
"layout": {
|
|
281
|
+
"visibility": "visible"
|
|
282
|
+
},
|
|
283
|
+
"paint": {
|
|
284
|
+
"fill-color": "rgba(240, 240, 240, 1)",
|
|
285
|
+
"fill-outline-color": "rgba(214, 212, 212, 1)"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"id": "airports",
|
|
290
|
+
"type": "fill",
|
|
291
|
+
"source": "osm",
|
|
292
|
+
"source-layer": "transport_areas",
|
|
293
|
+
"minzoom": 11,
|
|
294
|
+
"maxzoom": 24,
|
|
229
295
|
"filter": [
|
|
230
296
|
"==",
|
|
231
297
|
[
|
|
@@ -238,7 +304,51 @@ ohmVectorStyles = {
|
|
|
238
304
|
"visibility": "visible"
|
|
239
305
|
},
|
|
240
306
|
"paint": {
|
|
241
|
-
"fill-color": "rgba(
|
|
307
|
+
"fill-color": "rgba(235, 235, 225, 1)"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "nature_reserve_fill",
|
|
312
|
+
"type": "fill",
|
|
313
|
+
"source": "osm",
|
|
314
|
+
"source-layer": "landuse_areas",
|
|
315
|
+
"minzoom": 6,
|
|
316
|
+
"maxzoom": 24,
|
|
317
|
+
"filter": [
|
|
318
|
+
"in",
|
|
319
|
+
[
|
|
320
|
+
"get",
|
|
321
|
+
"type"
|
|
322
|
+
],
|
|
323
|
+
[
|
|
324
|
+
"literal",
|
|
325
|
+
[
|
|
326
|
+
"nature_reserve"
|
|
327
|
+
]
|
|
328
|
+
]
|
|
329
|
+
],
|
|
330
|
+
"layout": {
|
|
331
|
+
"visibility": "visible"
|
|
332
|
+
},
|
|
333
|
+
"paint": {
|
|
334
|
+
"fill-color": [
|
|
335
|
+
"interpolate",
|
|
336
|
+
[
|
|
337
|
+
"linear"
|
|
338
|
+
],
|
|
339
|
+
[
|
|
340
|
+
"zoom"
|
|
341
|
+
],
|
|
342
|
+
0,
|
|
343
|
+
"rgba(172, 221, 153, .3)",
|
|
344
|
+
4,
|
|
345
|
+
"rgba(168, 213, 159, .3)",
|
|
346
|
+
5,
|
|
347
|
+
"rgba(183, 234, 163, .3)",
|
|
348
|
+
7,
|
|
349
|
+
"rgba(180, 252, 174, .3)"
|
|
350
|
+
],
|
|
351
|
+
"fill-opacity": 1
|
|
242
352
|
}
|
|
243
353
|
},
|
|
244
354
|
{
|
|
@@ -246,7 +356,7 @@ ohmVectorStyles = {
|
|
|
246
356
|
"type": "fill",
|
|
247
357
|
"source": "osm",
|
|
248
358
|
"source-layer": "landuse_areas",
|
|
249
|
-
"minzoom":
|
|
359
|
+
"minzoom": 6,
|
|
250
360
|
"maxzoom": 24,
|
|
251
361
|
"filter": [
|
|
252
362
|
"in",
|
|
@@ -258,7 +368,6 @@ ohmVectorStyles = {
|
|
|
258
368
|
"literal",
|
|
259
369
|
[
|
|
260
370
|
"forest",
|
|
261
|
-
"nature_reserve",
|
|
262
371
|
"park",
|
|
263
372
|
"wood"
|
|
264
373
|
]
|
|
@@ -353,10 +462,10 @@ ohmVectorStyles = {
|
|
|
353
462
|
],
|
|
354
463
|
"park",
|
|
355
464
|
"rgba(208, 220, 174, 1)",
|
|
356
|
-
"nature_reserve",
|
|
357
|
-
"rgba(212, 225, 211, 0.3)",
|
|
358
465
|
"pitch",
|
|
359
466
|
"rgba(69, 150, 7, 0.39)",
|
|
467
|
+
"nature_reserve",
|
|
468
|
+
"rgba(212, 225, 211, 0.3)",
|
|
360
469
|
"golf_course",
|
|
361
470
|
"rgba(236, 240, 198, 1)",
|
|
362
471
|
"transparent"
|
|
@@ -401,7 +510,7 @@ ohmVectorStyles = {
|
|
|
401
510
|
"construction",
|
|
402
511
|
"rgba(242, 242, 235, 1)",
|
|
403
512
|
"railway",
|
|
404
|
-
"rgba(
|
|
513
|
+
"rgba(214, 214, 214, 1)",
|
|
405
514
|
"college",
|
|
406
515
|
"rgba(226, 214, 205, 1)",
|
|
407
516
|
"school",
|
|
@@ -420,7 +529,7 @@ ohmVectorStyles = {
|
|
|
420
529
|
"type": "fill",
|
|
421
530
|
"source": "osm",
|
|
422
531
|
"source-layer": "landuse_areas",
|
|
423
|
-
"minzoom":
|
|
532
|
+
"minzoom": 10,
|
|
424
533
|
"maxzoom": 24,
|
|
425
534
|
"layout": {
|
|
426
535
|
"visibility": "visible"
|
|
@@ -531,7 +640,7 @@ ohmVectorStyles = {
|
|
|
531
640
|
"forest",
|
|
532
641
|
"rgba(193, 208, 158, 1)",
|
|
533
642
|
"wood",
|
|
534
|
-
"
|
|
643
|
+
"rgba(220, 232, 194, 1)",
|
|
535
644
|
"scrub",
|
|
536
645
|
"rgba(199, 222, 194, 1)",
|
|
537
646
|
"transparent"
|
|
@@ -585,7 +694,7 @@ ohmVectorStyles = {
|
|
|
585
694
|
}
|
|
586
695
|
},
|
|
587
696
|
{
|
|
588
|
-
"id": "
|
|
697
|
+
"id": "landuse_areas_z12_developed_open_space_larger",
|
|
589
698
|
"type": "fill",
|
|
590
699
|
"source": "osm",
|
|
591
700
|
"source-layer": "landuse_areas",
|
|
@@ -614,20 +723,77 @@ ohmVectorStyles = {
|
|
|
614
723
|
"rgba(208, 220, 174, 1)",
|
|
615
724
|
"cemetery",
|
|
616
725
|
"rgba(214, 222, 210, 1)",
|
|
617
|
-
"grave_yard",
|
|
618
|
-
"rgba(214, 222, 210, 1)",
|
|
619
726
|
"sports_centre",
|
|
620
727
|
"rgba(208, 220, 174, 1)",
|
|
621
728
|
"stadium",
|
|
622
729
|
"rgba(208, 220, 174, 1)",
|
|
623
730
|
"recreation_ground",
|
|
624
731
|
"rgba(208, 220, 174, 1)",
|
|
732
|
+
"transparent"
|
|
733
|
+
]
|
|
734
|
+
],
|
|
735
|
+
"fill-outline-color": [
|
|
736
|
+
"interpolate",
|
|
737
|
+
[
|
|
738
|
+
"linear"
|
|
739
|
+
],
|
|
740
|
+
[
|
|
741
|
+
"zoom"
|
|
742
|
+
],
|
|
743
|
+
0,
|
|
744
|
+
[
|
|
745
|
+
"match",
|
|
746
|
+
[
|
|
747
|
+
"get",
|
|
748
|
+
"type"
|
|
749
|
+
],
|
|
750
|
+
"bleachers",
|
|
751
|
+
"rgba(195, 188, 188, 1)",
|
|
752
|
+
"playground",
|
|
753
|
+
"rgba(208, 220, 174, 1)",
|
|
754
|
+
"transparent"
|
|
755
|
+
]
|
|
756
|
+
]
|
|
757
|
+
}
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"id": "landuse_areas_z12_developed_open_space_smaller",
|
|
761
|
+
"type": "fill",
|
|
762
|
+
"source": "osm",
|
|
763
|
+
"source-layer": "landuse_areas",
|
|
764
|
+
"minzoom": 12,
|
|
765
|
+
"maxzoom": 24,
|
|
766
|
+
"layout": {
|
|
767
|
+
"visibility": "visible"
|
|
768
|
+
},
|
|
769
|
+
"paint": {
|
|
770
|
+
"fill-color": [
|
|
771
|
+
"interpolate",
|
|
772
|
+
[
|
|
773
|
+
"linear"
|
|
774
|
+
],
|
|
775
|
+
[
|
|
776
|
+
"zoom"
|
|
777
|
+
],
|
|
778
|
+
0,
|
|
779
|
+
[
|
|
780
|
+
"match",
|
|
781
|
+
[
|
|
782
|
+
"get",
|
|
783
|
+
"type"
|
|
784
|
+
],
|
|
785
|
+
"grave_yard",
|
|
786
|
+
"rgba(214, 222, 210, 1)",
|
|
625
787
|
"picnic_site",
|
|
626
788
|
"rgba(208, 220, 174, 1)",
|
|
627
789
|
"camp_site",
|
|
628
790
|
"rgba(208, 220, 174, 1)",
|
|
629
791
|
"playground",
|
|
630
792
|
"rgba(208, 220, 174, 1)",
|
|
793
|
+
"pitch",
|
|
794
|
+
"rgba(156, 193, 103, 1)",
|
|
795
|
+
"track",
|
|
796
|
+
"rgba(202, 184, 180, 1)",
|
|
631
797
|
"bleachers",
|
|
632
798
|
"rgba(220, 215, 215, 1)",
|
|
633
799
|
"transparent"
|
|
@@ -672,7 +838,7 @@ ohmVectorStyles = {
|
|
|
672
838
|
"type": "line",
|
|
673
839
|
"source": "osm",
|
|
674
840
|
"source-layer": "landuse_areas",
|
|
675
|
-
"minzoom":
|
|
841
|
+
"minzoom": 6,
|
|
676
842
|
"maxzoom": 24,
|
|
677
843
|
"filter": [
|
|
678
844
|
"==",
|
|
@@ -784,6 +950,8 @@ ohmVectorStyles = {
|
|
|
784
950
|
"type": "fill",
|
|
785
951
|
"source": "osm",
|
|
786
952
|
"source-layer": "transport_areas",
|
|
953
|
+
"minzoom": 14,
|
|
954
|
+
"maxzoom": 24,
|
|
787
955
|
"filter": [
|
|
788
956
|
"all",
|
|
789
957
|
[
|
|
@@ -799,18 +967,13 @@ ohmVectorStyles = {
|
|
|
799
967
|
"pedestrian"
|
|
800
968
|
]
|
|
801
969
|
]
|
|
802
|
-
],
|
|
803
|
-
[
|
|
804
|
-
"==",
|
|
805
|
-
[
|
|
806
|
-
"get",
|
|
807
|
-
"area"
|
|
808
|
-
],
|
|
809
|
-
"yes"
|
|
810
970
|
]
|
|
811
971
|
],
|
|
972
|
+
"layout": {
|
|
973
|
+
"visibility": "visible"
|
|
974
|
+
},
|
|
812
975
|
"paint": {
|
|
813
|
-
"fill-color": "rgba(
|
|
976
|
+
"fill-color": "rgba(246, 246, 246, 1)",
|
|
814
977
|
"fill-outline-color": "rgba(230,230,230, 1)"
|
|
815
978
|
}
|
|
816
979
|
},
|
|
@@ -1819,11 +1982,11 @@ ohmVectorStyles = {
|
|
|
1819
1982
|
}
|
|
1820
1983
|
},
|
|
1821
1984
|
{
|
|
1822
|
-
"id": "
|
|
1985
|
+
"id": "transport_traverser",
|
|
1823
1986
|
"type": "fill",
|
|
1824
1987
|
"source": "osm",
|
|
1825
1988
|
"source-layer": "transport_areas",
|
|
1826
|
-
"minzoom":
|
|
1989
|
+
"minzoom": 14,
|
|
1827
1990
|
"maxzoom": 24,
|
|
1828
1991
|
"filter": [
|
|
1829
1992
|
"==",
|
|
@@ -1831,22 +1994,92 @@ ohmVectorStyles = {
|
|
|
1831
1994
|
"get",
|
|
1832
1995
|
"type"
|
|
1833
1996
|
],
|
|
1834
|
-
"
|
|
1997
|
+
"traverser"
|
|
1835
1998
|
],
|
|
1836
1999
|
"layout": {
|
|
1837
2000
|
"visibility": "visible"
|
|
1838
2001
|
},
|
|
1839
2002
|
"paint": {
|
|
1840
|
-
"fill-color": "rgba(
|
|
1841
|
-
"fill-
|
|
2003
|
+
"fill-color": "rgba(189, 141, 125, 0.15)",
|
|
2004
|
+
"fill-opacity": 1,
|
|
2005
|
+
"fill-outline-color": "rgba(208, 200, 200, 1)"
|
|
1842
2006
|
}
|
|
1843
2007
|
},
|
|
1844
2008
|
{
|
|
1845
|
-
"id": "
|
|
2009
|
+
"id": "transport_turntable",
|
|
1846
2010
|
"type": "fill",
|
|
1847
2011
|
"source": "osm",
|
|
1848
2012
|
"source-layer": "transport_areas",
|
|
1849
|
-
"minzoom":
|
|
2013
|
+
"minzoom": 14,
|
|
2014
|
+
"filter": [
|
|
2015
|
+
"==",
|
|
2016
|
+
[
|
|
2017
|
+
"get",
|
|
2018
|
+
"type"
|
|
2019
|
+
],
|
|
2020
|
+
"turntable"
|
|
2021
|
+
],
|
|
2022
|
+
"layout": {
|
|
2023
|
+
"visibility": "visible"
|
|
2024
|
+
},
|
|
2025
|
+
"paint": {
|
|
2026
|
+
"fill-color": "rgba(189, 141, 125, 0.15)",
|
|
2027
|
+
"fill-opacity": 1,
|
|
2028
|
+
"fill-outline-color": "rgba(208, 200, 200, 1)"
|
|
2029
|
+
}
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"id": "transport_passenger_platform",
|
|
2033
|
+
"type": "fill",
|
|
2034
|
+
"source": "osm",
|
|
2035
|
+
"source-layer": "transport_areas",
|
|
2036
|
+
"minzoom": 14,
|
|
2037
|
+
"filter": [
|
|
2038
|
+
"==",
|
|
2039
|
+
[
|
|
2040
|
+
"get",
|
|
2041
|
+
"type"
|
|
2042
|
+
],
|
|
2043
|
+
"platform"
|
|
2044
|
+
],
|
|
2045
|
+
"layout": {
|
|
2046
|
+
"visibility": "visible"
|
|
2047
|
+
},
|
|
2048
|
+
"paint": {
|
|
2049
|
+
"fill-color": "rgba(117, 101, 101, 0.15)",
|
|
2050
|
+
"fill-opacity": 1,
|
|
2051
|
+
"fill-outline-color": "rgba(208, 200, 200, 1)"
|
|
2052
|
+
}
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
"id": "transport_freight_platform",
|
|
2056
|
+
"type": "fill",
|
|
2057
|
+
"source": "osm",
|
|
2058
|
+
"source-layer": "transport_areas",
|
|
2059
|
+
"minzoom": 14,
|
|
2060
|
+
"filter": [
|
|
2061
|
+
"==",
|
|
2062
|
+
[
|
|
2063
|
+
"get",
|
|
2064
|
+
"type"
|
|
2065
|
+
],
|
|
2066
|
+
"loading_ramp"
|
|
2067
|
+
],
|
|
2068
|
+
"layout": {
|
|
2069
|
+
"visibility": "visible"
|
|
2070
|
+
},
|
|
2071
|
+
"paint": {
|
|
2072
|
+
"fill-color": "rgba(117, 101, 101, 0.15)",
|
|
2073
|
+
"fill-opacity": 1,
|
|
2074
|
+
"fill-outline-color": "rgba(208, 200, 200, 1)"
|
|
2075
|
+
}
|
|
2076
|
+
},
|
|
2077
|
+
{
|
|
2078
|
+
"id": "terminals",
|
|
2079
|
+
"type": "fill",
|
|
2080
|
+
"source": "osm",
|
|
2081
|
+
"source-layer": "transport_areas",
|
|
2082
|
+
"minzoom": 11,
|
|
1850
2083
|
"maxzoom": 24,
|
|
1851
2084
|
"filter": [
|
|
1852
2085
|
"==",
|
|
@@ -1854,14 +2087,14 @@ ohmVectorStyles = {
|
|
|
1854
2087
|
"get",
|
|
1855
2088
|
"type"
|
|
1856
2089
|
],
|
|
1857
|
-
"
|
|
2090
|
+
"terminal"
|
|
1858
2091
|
],
|
|
1859
2092
|
"layout": {
|
|
1860
2093
|
"visibility": "visible"
|
|
1861
2094
|
},
|
|
1862
2095
|
"paint": {
|
|
1863
|
-
"fill-color": "rgba(
|
|
1864
|
-
"fill-outline-color": "rgba(
|
|
2096
|
+
"fill-color": "rgba(230, 230, 233, 1)",
|
|
2097
|
+
"fill-outline-color": "rgba(32, 32, 32, .7)"
|
|
1865
2098
|
}
|
|
1866
2099
|
},
|
|
1867
2100
|
{
|
|
@@ -1869,7 +2102,7 @@ ohmVectorStyles = {
|
|
|
1869
2102
|
"type": "line",
|
|
1870
2103
|
"source": "osm",
|
|
1871
2104
|
"source-layer": "transport_lines",
|
|
1872
|
-
"minzoom":
|
|
2105
|
+
"minzoom": 11,
|
|
1873
2106
|
"maxzoom": 24,
|
|
1874
2107
|
"filter": [
|
|
1875
2108
|
"==",
|
|
@@ -1883,7 +2116,7 @@ ohmVectorStyles = {
|
|
|
1883
2116
|
"visibility": "visible"
|
|
1884
2117
|
},
|
|
1885
2118
|
"paint": {
|
|
1886
|
-
"line-color": "rgba(
|
|
2119
|
+
"line-color": "rgba(200, 200, 200, 1)",
|
|
1887
2120
|
"line-width": [
|
|
1888
2121
|
"interpolate",
|
|
1889
2122
|
[
|
|
@@ -1897,7 +2130,7 @@ ohmVectorStyles = {
|
|
|
1897
2130
|
13,
|
|
1898
2131
|
1.5,
|
|
1899
2132
|
18,
|
|
1900
|
-
|
|
2133
|
+
8
|
|
1901
2134
|
]
|
|
1902
2135
|
}
|
|
1903
2136
|
},
|
|
@@ -1906,7 +2139,7 @@ ohmVectorStyles = {
|
|
|
1906
2139
|
"type": "line",
|
|
1907
2140
|
"source": "osm",
|
|
1908
2141
|
"source-layer": "transport_lines",
|
|
1909
|
-
"minzoom":
|
|
2142
|
+
"minzoom": 10,
|
|
1910
2143
|
"maxzoom": 24,
|
|
1911
2144
|
"filter": [
|
|
1912
2145
|
"==",
|
|
@@ -1920,19 +2153,20 @@ ohmVectorStyles = {
|
|
|
1920
2153
|
"visibility": "visible"
|
|
1921
2154
|
},
|
|
1922
2155
|
"paint": {
|
|
1923
|
-
"line-color": "rgba(
|
|
2156
|
+
"line-color": "rgba(200, 200, 200, 1)",
|
|
1924
2157
|
"line-width": [
|
|
1925
2158
|
"interpolate",
|
|
1926
2159
|
[
|
|
1927
|
-
"
|
|
2160
|
+
"exponential",
|
|
2161
|
+
1.8
|
|
1928
2162
|
],
|
|
1929
2163
|
[
|
|
1930
2164
|
"zoom"
|
|
1931
2165
|
],
|
|
1932
2166
|
12,
|
|
1933
2167
|
1.5,
|
|
1934
|
-
|
|
1935
|
-
|
|
2168
|
+
14,
|
|
2169
|
+
15
|
|
1936
2170
|
]
|
|
1937
2171
|
}
|
|
1938
2172
|
},
|
|
@@ -5858,10 +6092,10 @@ ohmVectorStyles = {
|
|
|
5858
6092
|
[
|
|
5859
6093
|
"zoom"
|
|
5860
6094
|
],
|
|
5861
|
-
|
|
5862
|
-
|
|
5863
|
-
|
|
5864
|
-
|
|
6095
|
+
14,
|
|
6096
|
+
2,
|
|
6097
|
+
24,
|
|
6098
|
+
6
|
|
5865
6099
|
]
|
|
5866
6100
|
}
|
|
5867
6101
|
},
|
|
@@ -6530,15 +6764,15 @@ ohmVectorStyles = {
|
|
|
6530
6764
|
"interpolate",
|
|
6531
6765
|
[
|
|
6532
6766
|
"exponential",
|
|
6533
|
-
|
|
6767
|
+
2
|
|
6534
6768
|
],
|
|
6535
6769
|
[
|
|
6536
6770
|
"zoom"
|
|
6537
6771
|
],
|
|
6538
|
-
|
|
6539
|
-
|
|
6772
|
+
14,
|
|
6773
|
+
1.5,
|
|
6540
6774
|
18,
|
|
6541
|
-
|
|
6775
|
+
14
|
|
6542
6776
|
]
|
|
6543
6777
|
}
|
|
6544
6778
|
},
|
|
@@ -7220,6 +7454,14 @@ ohmVectorStyles = {
|
|
|
7220
7454
|
]
|
|
7221
7455
|
]
|
|
7222
7456
|
]
|
|
7457
|
+
],
|
|
7458
|
+
[
|
|
7459
|
+
"==",
|
|
7460
|
+
[
|
|
7461
|
+
"get",
|
|
7462
|
+
"tunnel"
|
|
7463
|
+
],
|
|
7464
|
+
0
|
|
7223
7465
|
]
|
|
7224
7466
|
],
|
|
7225
7467
|
"layout": {
|
|
@@ -7458,6 +7700,14 @@ ohmVectorStyles = {
|
|
|
7458
7700
|
]
|
|
7459
7701
|
]
|
|
7460
7702
|
]
|
|
7703
|
+
],
|
|
7704
|
+
[
|
|
7705
|
+
"==",
|
|
7706
|
+
[
|
|
7707
|
+
"get",
|
|
7708
|
+
"tunnel"
|
|
7709
|
+
],
|
|
7710
|
+
0
|
|
7461
7711
|
]
|
|
7462
7712
|
],
|
|
7463
7713
|
"layout": {
|
|
@@ -7642,6 +7892,14 @@ ohmVectorStyles = {
|
|
|
7642
7892
|
"usage"
|
|
7643
7893
|
],
|
|
7644
7894
|
"main"
|
|
7895
|
+
],
|
|
7896
|
+
[
|
|
7897
|
+
"==",
|
|
7898
|
+
[
|
|
7899
|
+
"get",
|
|
7900
|
+
"tunnel"
|
|
7901
|
+
],
|
|
7902
|
+
0
|
|
7645
7903
|
]
|
|
7646
7904
|
],
|
|
7647
7905
|
"layout": {
|
|
@@ -7669,7 +7927,7 @@ ohmVectorStyles = {
|
|
|
7669
7927
|
}
|
|
7670
7928
|
},
|
|
7671
7929
|
{
|
|
7672
|
-
"id": "roads_rail-
|
|
7930
|
+
"id": "roads_rail-tunnel",
|
|
7673
7931
|
"type": "line",
|
|
7674
7932
|
"source": "osm",
|
|
7675
7933
|
"source-layer": "transport_lines",
|
|
@@ -7692,51 +7950,22 @@ ohmVectorStyles = {
|
|
|
7692
7950
|
]
|
|
7693
7951
|
]
|
|
7694
7952
|
],
|
|
7695
|
-
[
|
|
7696
|
-
"!",
|
|
7697
|
-
[
|
|
7698
|
-
"in",
|
|
7699
|
-
[
|
|
7700
|
-
"get",
|
|
7701
|
-
"service"
|
|
7702
|
-
],
|
|
7703
|
-
[
|
|
7704
|
-
"literal",
|
|
7705
|
-
[
|
|
7706
|
-
"siding",
|
|
7707
|
-
"yard"
|
|
7708
|
-
]
|
|
7709
|
-
]
|
|
7710
|
-
]
|
|
7711
|
-
],
|
|
7712
7953
|
[
|
|
7713
7954
|
"==",
|
|
7714
7955
|
[
|
|
7715
7956
|
"get",
|
|
7716
|
-
"
|
|
7957
|
+
"tunnel"
|
|
7717
7958
|
],
|
|
7718
|
-
|
|
7959
|
+
1
|
|
7719
7960
|
]
|
|
7720
7961
|
],
|
|
7721
7962
|
"layout": {
|
|
7722
7963
|
"visibility": "visible",
|
|
7723
|
-
"line-cap": "
|
|
7964
|
+
"line-cap": "round",
|
|
7724
7965
|
"line-join": "round"
|
|
7725
7966
|
},
|
|
7726
7967
|
"paint": {
|
|
7727
|
-
"line-color":
|
|
7728
|
-
"interpolate",
|
|
7729
|
-
[
|
|
7730
|
-
"linear"
|
|
7731
|
-
],
|
|
7732
|
-
[
|
|
7733
|
-
"zoom"
|
|
7734
|
-
],
|
|
7735
|
-
6,
|
|
7736
|
-
"rgba(223, 223, 223, 1)",
|
|
7737
|
-
15,
|
|
7738
|
-
"rgba(255, 255, 255, 1)"
|
|
7739
|
-
],
|
|
7968
|
+
"line-color": "rgba(201, 211, 218, 1)",
|
|
7740
7969
|
"line-width": [
|
|
7741
7970
|
"interpolate",
|
|
7742
7971
|
[
|
|
@@ -7746,40 +7975,68 @@ ohmVectorStyles = {
|
|
|
7746
7975
|
"zoom"
|
|
7747
7976
|
],
|
|
7748
7977
|
7,
|
|
7749
|
-
|
|
7978
|
+
3,
|
|
7750
7979
|
12,
|
|
7751
|
-
|
|
7980
|
+
4,
|
|
7752
7981
|
20,
|
|
7753
|
-
|
|
7754
|
-
]
|
|
7755
|
-
|
|
7756
|
-
|
|
7982
|
+
5
|
|
7983
|
+
]
|
|
7984
|
+
}
|
|
7985
|
+
},
|
|
7986
|
+
{
|
|
7987
|
+
"id": "roads_rail-bridge",
|
|
7988
|
+
"type": "line",
|
|
7989
|
+
"source": "osm",
|
|
7990
|
+
"source-layer": "transport_lines",
|
|
7991
|
+
"minzoom": 7,
|
|
7992
|
+
"maxzoom": 24,
|
|
7993
|
+
"filter": [
|
|
7994
|
+
"all",
|
|
7995
|
+
[
|
|
7996
|
+
"in",
|
|
7757
7997
|
[
|
|
7758
|
-
"
|
|
7998
|
+
"get",
|
|
7999
|
+
"type"
|
|
7759
8000
|
],
|
|
7760
8001
|
[
|
|
7761
8002
|
"literal",
|
|
7762
8003
|
[
|
|
7763
|
-
|
|
7764
|
-
|
|
8004
|
+
"light_rail",
|
|
8005
|
+
"preserved",
|
|
8006
|
+
"rail"
|
|
7765
8007
|
]
|
|
8008
|
+
]
|
|
8009
|
+
],
|
|
8010
|
+
[
|
|
8011
|
+
"==",
|
|
8012
|
+
[
|
|
8013
|
+
"get",
|
|
8014
|
+
"bridge"
|
|
7766
8015
|
],
|
|
7767
|
-
|
|
8016
|
+
1
|
|
8017
|
+
]
|
|
8018
|
+
],
|
|
8019
|
+
"layout": {
|
|
8020
|
+
"visibility": "visible",
|
|
8021
|
+
"line-cap": "round",
|
|
8022
|
+
"line-join": "round"
|
|
8023
|
+
},
|
|
8024
|
+
"paint": {
|
|
8025
|
+
"line-color": "rgba(148, 159, 168, 1)",
|
|
8026
|
+
"line-width": [
|
|
8027
|
+
"interpolate",
|
|
7768
8028
|
[
|
|
7769
|
-
"
|
|
7770
|
-
[
|
|
7771
|
-
5,
|
|
7772
|
-
5
|
|
7773
|
-
]
|
|
8029
|
+
"linear"
|
|
7774
8030
|
],
|
|
7775
|
-
15,
|
|
7776
8031
|
[
|
|
7777
|
-
"
|
|
7778
|
-
|
|
7779
|
-
|
|
7780
|
-
|
|
7781
|
-
|
|
7782
|
-
|
|
8032
|
+
"zoom"
|
|
8033
|
+
],
|
|
8034
|
+
7,
|
|
8035
|
+
4,
|
|
8036
|
+
12,
|
|
8037
|
+
7,
|
|
8038
|
+
20,
|
|
8039
|
+
10
|
|
7783
8040
|
]
|
|
7784
8041
|
}
|
|
7785
8042
|
},
|
|
@@ -7952,6 +8209,14 @@ ohmVectorStyles = {
|
|
|
7952
8209
|
"usage"
|
|
7953
8210
|
],
|
|
7954
8211
|
"main"
|
|
8212
|
+
],
|
|
8213
|
+
[
|
|
8214
|
+
"==",
|
|
8215
|
+
[
|
|
8216
|
+
"get",
|
|
8217
|
+
"tunnel"
|
|
8218
|
+
],
|
|
8219
|
+
0
|
|
7955
8220
|
]
|
|
7956
8221
|
],
|
|
7957
8222
|
"layout": {
|
|
@@ -7990,6 +8255,227 @@ ohmVectorStyles = {
|
|
|
7990
8255
|
]
|
|
7991
8256
|
}
|
|
7992
8257
|
},
|
|
8258
|
+
{
|
|
8259
|
+
"id": "roads_rail-main-dash",
|
|
8260
|
+
"type": "line",
|
|
8261
|
+
"source": "osm",
|
|
8262
|
+
"source-layer": "transport_lines",
|
|
8263
|
+
"minzoom": 7,
|
|
8264
|
+
"maxzoom": 24,
|
|
8265
|
+
"filter": [
|
|
8266
|
+
"all",
|
|
8267
|
+
[
|
|
8268
|
+
"in",
|
|
8269
|
+
[
|
|
8270
|
+
"get",
|
|
8271
|
+
"type"
|
|
8272
|
+
],
|
|
8273
|
+
[
|
|
8274
|
+
"literal",
|
|
8275
|
+
[
|
|
8276
|
+
"light_rail",
|
|
8277
|
+
"preserved",
|
|
8278
|
+
"rail"
|
|
8279
|
+
]
|
|
8280
|
+
]
|
|
8281
|
+
],
|
|
8282
|
+
[
|
|
8283
|
+
"!",
|
|
8284
|
+
[
|
|
8285
|
+
"in",
|
|
8286
|
+
[
|
|
8287
|
+
"get",
|
|
8288
|
+
"service"
|
|
8289
|
+
],
|
|
8290
|
+
[
|
|
8291
|
+
"literal",
|
|
8292
|
+
[
|
|
8293
|
+
"siding",
|
|
8294
|
+
"yard"
|
|
8295
|
+
]
|
|
8296
|
+
]
|
|
8297
|
+
]
|
|
8298
|
+
],
|
|
8299
|
+
[
|
|
8300
|
+
"==",
|
|
8301
|
+
[
|
|
8302
|
+
"get",
|
|
8303
|
+
"usage"
|
|
8304
|
+
],
|
|
8305
|
+
"main"
|
|
8306
|
+
],
|
|
8307
|
+
[
|
|
8308
|
+
"==",
|
|
8309
|
+
[
|
|
8310
|
+
"get",
|
|
8311
|
+
"tunnel"
|
|
8312
|
+
],
|
|
8313
|
+
0
|
|
8314
|
+
]
|
|
8315
|
+
],
|
|
8316
|
+
"layout": {
|
|
8317
|
+
"visibility": "visible",
|
|
8318
|
+
"line-cap": "square",
|
|
8319
|
+
"line-join": "round"
|
|
8320
|
+
},
|
|
8321
|
+
"paint": {
|
|
8322
|
+
"line-color": [
|
|
8323
|
+
"interpolate",
|
|
8324
|
+
[
|
|
8325
|
+
"linear"
|
|
8326
|
+
],
|
|
8327
|
+
[
|
|
8328
|
+
"zoom"
|
|
8329
|
+
],
|
|
8330
|
+
6,
|
|
8331
|
+
"rgba(223, 223, 223, 1)",
|
|
8332
|
+
15,
|
|
8333
|
+
"rgba(255, 255, 255, 1)"
|
|
8334
|
+
],
|
|
8335
|
+
"line-width": [
|
|
8336
|
+
"interpolate",
|
|
8337
|
+
[
|
|
8338
|
+
"linear"
|
|
8339
|
+
],
|
|
8340
|
+
[
|
|
8341
|
+
"zoom"
|
|
8342
|
+
],
|
|
8343
|
+
7,
|
|
8344
|
+
1.5,
|
|
8345
|
+
12,
|
|
8346
|
+
2,
|
|
8347
|
+
20,
|
|
8348
|
+
3
|
|
8349
|
+
],
|
|
8350
|
+
"line-dasharray": [
|
|
8351
|
+
"step",
|
|
8352
|
+
[
|
|
8353
|
+
"zoom"
|
|
8354
|
+
],
|
|
8355
|
+
[
|
|
8356
|
+
"literal",
|
|
8357
|
+
[
|
|
8358
|
+
7,
|
|
8359
|
+
7
|
|
8360
|
+
]
|
|
8361
|
+
],
|
|
8362
|
+
12,
|
|
8363
|
+
[
|
|
8364
|
+
"literal",
|
|
8365
|
+
[
|
|
8366
|
+
5,
|
|
8367
|
+
5
|
|
8368
|
+
]
|
|
8369
|
+
],
|
|
8370
|
+
15,
|
|
8371
|
+
[
|
|
8372
|
+
"literal",
|
|
8373
|
+
[
|
|
8374
|
+
4,
|
|
8375
|
+
4
|
|
8376
|
+
]
|
|
8377
|
+
]
|
|
8378
|
+
]
|
|
8379
|
+
}
|
|
8380
|
+
},
|
|
8381
|
+
{
|
|
8382
|
+
"id": "roads_rail-dash-tunnel",
|
|
8383
|
+
"type": "line",
|
|
8384
|
+
"source": "osm",
|
|
8385
|
+
"source-layer": "transport_lines",
|
|
8386
|
+
"minzoom": 7,
|
|
8387
|
+
"maxzoom": 24,
|
|
8388
|
+
"filter": [
|
|
8389
|
+
"all",
|
|
8390
|
+
[
|
|
8391
|
+
"in",
|
|
8392
|
+
[
|
|
8393
|
+
"get",
|
|
8394
|
+
"type"
|
|
8395
|
+
],
|
|
8396
|
+
[
|
|
8397
|
+
"literal",
|
|
8398
|
+
[
|
|
8399
|
+
"light_rail",
|
|
8400
|
+
"preserved",
|
|
8401
|
+
"rail"
|
|
8402
|
+
]
|
|
8403
|
+
]
|
|
8404
|
+
],
|
|
8405
|
+
[
|
|
8406
|
+
"==",
|
|
8407
|
+
[
|
|
8408
|
+
"get",
|
|
8409
|
+
"tunnel"
|
|
8410
|
+
],
|
|
8411
|
+
1
|
|
8412
|
+
]
|
|
8413
|
+
],
|
|
8414
|
+
"layout": {
|
|
8415
|
+
"visibility": "visible",
|
|
8416
|
+
"line-cap": "round",
|
|
8417
|
+
"line-join": "round"
|
|
8418
|
+
},
|
|
8419
|
+
"paint": {
|
|
8420
|
+
"line-color": [
|
|
8421
|
+
"interpolate",
|
|
8422
|
+
[
|
|
8423
|
+
"linear"
|
|
8424
|
+
],
|
|
8425
|
+
[
|
|
8426
|
+
"zoom"
|
|
8427
|
+
],
|
|
8428
|
+
6,
|
|
8429
|
+
"rgba(223, 223, 223, 1)",
|
|
8430
|
+
15,
|
|
8431
|
+
"rgba(255, 255, 255, 1)"
|
|
8432
|
+
],
|
|
8433
|
+
"line-width": [
|
|
8434
|
+
"interpolate",
|
|
8435
|
+
[
|
|
8436
|
+
"linear"
|
|
8437
|
+
],
|
|
8438
|
+
[
|
|
8439
|
+
"zoom"
|
|
8440
|
+
],
|
|
8441
|
+
7,
|
|
8442
|
+
1,
|
|
8443
|
+
12,
|
|
8444
|
+
1.5,
|
|
8445
|
+
20,
|
|
8446
|
+
2
|
|
8447
|
+
],
|
|
8448
|
+
"line-dasharray": [
|
|
8449
|
+
"step",
|
|
8450
|
+
[
|
|
8451
|
+
"zoom"
|
|
8452
|
+
],
|
|
8453
|
+
[
|
|
8454
|
+
"literal",
|
|
8455
|
+
[
|
|
8456
|
+
5,
|
|
8457
|
+
5
|
|
8458
|
+
]
|
|
8459
|
+
],
|
|
8460
|
+
12,
|
|
8461
|
+
[
|
|
8462
|
+
"literal",
|
|
8463
|
+
[
|
|
8464
|
+
3,
|
|
8465
|
+
3
|
|
8466
|
+
]
|
|
8467
|
+
],
|
|
8468
|
+
15,
|
|
8469
|
+
[
|
|
8470
|
+
"literal",
|
|
8471
|
+
[
|
|
8472
|
+
2,
|
|
8473
|
+
2
|
|
8474
|
+
]
|
|
8475
|
+
]
|
|
8476
|
+
]
|
|
8477
|
+
}
|
|
8478
|
+
},
|
|
7993
8479
|
{
|
|
7994
8480
|
"id": "roads_rail-dash",
|
|
7995
8481
|
"type": "line",
|
|
@@ -8038,6 +8524,14 @@ ohmVectorStyles = {
|
|
|
8038
8524
|
"usage"
|
|
8039
8525
|
],
|
|
8040
8526
|
"main"
|
|
8527
|
+
],
|
|
8528
|
+
[
|
|
8529
|
+
"==",
|
|
8530
|
+
[
|
|
8531
|
+
"get",
|
|
8532
|
+
"tunnel"
|
|
8533
|
+
],
|
|
8534
|
+
0
|
|
8041
8535
|
]
|
|
8042
8536
|
],
|
|
8043
8537
|
"layout": {
|
|
@@ -9899,7 +10393,7 @@ ohmVectorStyles = {
|
|
|
9899
10393
|
"id": "water_pointlabels_ocean_sea",
|
|
9900
10394
|
"type": "symbol",
|
|
9901
10395
|
"source": "osm",
|
|
9902
|
-
"source-layer": "
|
|
10396
|
+
"source-layer": "place_points_centroids",
|
|
9903
10397
|
"minzoom": 0,
|
|
9904
10398
|
"maxzoom": 24,
|
|
9905
10399
|
"filter": [
|
|
@@ -10153,7 +10647,7 @@ ohmVectorStyles = {
|
|
|
10153
10647
|
"id": "landuse_areaslabels_park",
|
|
10154
10648
|
"type": "symbol",
|
|
10155
10649
|
"source": "osm",
|
|
10156
|
-
"source-layer": "
|
|
10650
|
+
"source-layer": "landuse_points_centroids",
|
|
10157
10651
|
"minzoom": 14,
|
|
10158
10652
|
"maxzoom": 24,
|
|
10159
10653
|
"filter": [
|
|
@@ -10227,7 +10721,7 @@ ohmVectorStyles = {
|
|
|
10227
10721
|
"id": "landuse_areaslabels_farming",
|
|
10228
10722
|
"type": "symbol",
|
|
10229
10723
|
"source": "osm",
|
|
10230
|
-
"source-layer": "
|
|
10724
|
+
"source-layer": "landuse_points_centroids",
|
|
10231
10725
|
"minzoom": 14,
|
|
10232
10726
|
"maxzoom": 24,
|
|
10233
10727
|
"filter": [
|
|
@@ -10269,7 +10763,7 @@ ohmVectorStyles = {
|
|
|
10269
10763
|
"id": "landuse_areaslabels_forest",
|
|
10270
10764
|
"type": "symbol",
|
|
10271
10765
|
"source": "osm",
|
|
10272
|
-
"source-layer": "
|
|
10766
|
+
"source-layer": "landuse_points_centroids",
|
|
10273
10767
|
"minzoom": 14,
|
|
10274
10768
|
"maxzoom": 24,
|
|
10275
10769
|
"filter": [
|
|
@@ -10282,7 +10776,6 @@ ohmVectorStyles = {
|
|
|
10282
10776
|
"literal",
|
|
10283
10777
|
[
|
|
10284
10778
|
"forest",
|
|
10285
|
-
"nature_reserve",
|
|
10286
10779
|
"wood"
|
|
10287
10780
|
]
|
|
10288
10781
|
]
|
|
@@ -10303,11 +10796,47 @@ ohmVectorStyles = {
|
|
|
10303
10796
|
"text-halo-width": 1
|
|
10304
10797
|
}
|
|
10305
10798
|
},
|
|
10799
|
+
{
|
|
10800
|
+
"id": "landuse_areaslabels_nature_reserve",
|
|
10801
|
+
"type": "symbol",
|
|
10802
|
+
"source": "osm",
|
|
10803
|
+
"source-layer": "landuse_points_centroids",
|
|
10804
|
+
"minzoom": 6,
|
|
10805
|
+
"maxzoom": 12,
|
|
10806
|
+
"filter": [
|
|
10807
|
+
"in",
|
|
10808
|
+
[
|
|
10809
|
+
"get",
|
|
10810
|
+
"type"
|
|
10811
|
+
],
|
|
10812
|
+
[
|
|
10813
|
+
"literal",
|
|
10814
|
+
[
|
|
10815
|
+
"nature_reserve"
|
|
10816
|
+
]
|
|
10817
|
+
]
|
|
10818
|
+
],
|
|
10819
|
+
"layout": {
|
|
10820
|
+
"text-size": 24,
|
|
10821
|
+
"text-field": [
|
|
10822
|
+
"get",
|
|
10823
|
+
"name"
|
|
10824
|
+
],
|
|
10825
|
+
"text-font": [
|
|
10826
|
+
"OpenHistorical"
|
|
10827
|
+
]
|
|
10828
|
+
},
|
|
10829
|
+
"paint": {
|
|
10830
|
+
"text-color": "rgba(95, 107, 71, 1)",
|
|
10831
|
+
"text-halo-color": "rgba(201, 213, 190, 1)",
|
|
10832
|
+
"text-halo-width": 1
|
|
10833
|
+
}
|
|
10834
|
+
},
|
|
10306
10835
|
{
|
|
10307
10836
|
"id": "landuse_areaslabels_school",
|
|
10308
10837
|
"type": "symbol",
|
|
10309
10838
|
"source": "osm",
|
|
10310
|
-
"source-layer": "
|
|
10839
|
+
"source-layer": "landuse_points_centroids",
|
|
10311
10840
|
"minzoom": 14,
|
|
10312
10841
|
"maxzoom": 24,
|
|
10313
10842
|
"filter": [
|
|
@@ -10343,11 +10872,42 @@ ohmVectorStyles = {
|
|
|
10343
10872
|
"text-halo-width": 1
|
|
10344
10873
|
}
|
|
10345
10874
|
},
|
|
10875
|
+
{
|
|
10876
|
+
"id": "other_areaslabels_military",
|
|
10877
|
+
"type": "symbol",
|
|
10878
|
+
"source": "osm",
|
|
10879
|
+
"source-layer": "other_points_centroids",
|
|
10880
|
+
"minzoom": 12,
|
|
10881
|
+
"maxzoom": 24,
|
|
10882
|
+
"filter": [
|
|
10883
|
+
"==",
|
|
10884
|
+
[
|
|
10885
|
+
"get",
|
|
10886
|
+
"class"
|
|
10887
|
+
],
|
|
10888
|
+
"military"
|
|
10889
|
+
],
|
|
10890
|
+
"layout": {
|
|
10891
|
+
"text-field": [
|
|
10892
|
+
"get",
|
|
10893
|
+
"name"
|
|
10894
|
+
],
|
|
10895
|
+
"text-size": 13,
|
|
10896
|
+
"text-font": [
|
|
10897
|
+
"OpenHistorical"
|
|
10898
|
+
]
|
|
10899
|
+
},
|
|
10900
|
+
"paint": {
|
|
10901
|
+
"text-color": "rgba(180, 50, 50, 1)",
|
|
10902
|
+
"text-halo-color": "rgba(255, 255, 255, 1)",
|
|
10903
|
+
"text-halo-width": 1
|
|
10904
|
+
}
|
|
10905
|
+
},
|
|
10346
10906
|
{
|
|
10347
10907
|
"id": "landuse_areaslabels_z8glacier",
|
|
10348
10908
|
"type": "symbol",
|
|
10349
10909
|
"source": "osm",
|
|
10350
|
-
"source-layer": "
|
|
10910
|
+
"source-layer": "landuse_points_centroids",
|
|
10351
10911
|
"minzoom": 10,
|
|
10352
10912
|
"maxzoom": 22,
|
|
10353
10913
|
"filter": [
|
|
@@ -10394,7 +10954,7 @@ ohmVectorStyles = {
|
|
|
10394
10954
|
"id": "placearea_label",
|
|
10395
10955
|
"type": "symbol",
|
|
10396
10956
|
"source": "osm",
|
|
10397
|
-
"source-layer": "
|
|
10957
|
+
"source-layer": "place_points_centroids",
|
|
10398
10958
|
"minzoom": 14,
|
|
10399
10959
|
"maxzoom": 24,
|
|
10400
10960
|
"filter": [
|
|
@@ -10472,7 +11032,7 @@ ohmVectorStyles = {
|
|
|
10472
11032
|
"id": "points_of_interest_frombuildings",
|
|
10473
11033
|
"type": "symbol",
|
|
10474
11034
|
"source": "osm",
|
|
10475
|
-
"source-layer": "
|
|
11035
|
+
"source-layer": "buildings_points_centroids",
|
|
10476
11036
|
"minzoom": 16,
|
|
10477
11037
|
"filter": [
|
|
10478
11038
|
"!=",
|
|
@@ -10536,7 +11096,7 @@ ohmVectorStyles = {
|
|
|
10536
11096
|
"id": "points_of_interest_fromareasz14-centroids",
|
|
10537
11097
|
"type": "symbol",
|
|
10538
11098
|
"source": "osm",
|
|
10539
|
-
"source-layer": "
|
|
11099
|
+
"source-layer": "amenity_points_centroids",
|
|
10540
11100
|
"minzoom": 14,
|
|
10541
11101
|
"maxzoom": 16,
|
|
10542
11102
|
"filter": [
|
|
@@ -10591,7 +11151,7 @@ ohmVectorStyles = {
|
|
|
10591
11151
|
"id": "points_of_interest_fromareasz14",
|
|
10592
11152
|
"type": "symbol",
|
|
10593
11153
|
"source": "osm",
|
|
10594
|
-
"source-layer": "
|
|
11154
|
+
"source-layer": "amenity_points_centroids",
|
|
10595
11155
|
"minzoom": 14,
|
|
10596
11156
|
"maxzoom": 16,
|
|
10597
11157
|
"filter": [
|
|
@@ -10646,7 +11206,7 @@ ohmVectorStyles = {
|
|
|
10646
11206
|
"id": "points_of_interest_fromareas",
|
|
10647
11207
|
"type": "symbol",
|
|
10648
11208
|
"source": "osm",
|
|
10649
|
-
"source-layer": "
|
|
11209
|
+
"source-layer": "amenity_points_centroids",
|
|
10650
11210
|
"minzoom": 16,
|
|
10651
11211
|
"maxzoom": 24,
|
|
10652
11212
|
"filter": [
|
|
@@ -10795,7 +11355,7 @@ ohmVectorStyles = {
|
|
|
10795
11355
|
"id": "points_of_interest_other",
|
|
10796
11356
|
"type": "symbol",
|
|
10797
11357
|
"source": "osm",
|
|
10798
|
-
"source-layer": "
|
|
11358
|
+
"source-layer": "other_points_centroids",
|
|
10799
11359
|
"minzoom": 15,
|
|
10800
11360
|
"maxzoom": 24,
|
|
10801
11361
|
"filter": [
|
|
@@ -10924,7 +11484,7 @@ ohmVectorStyles = {
|
|
|
10924
11484
|
"id": "points_of_interest_amenity",
|
|
10925
11485
|
"type": "symbol",
|
|
10926
11486
|
"source": "osm",
|
|
10927
|
-
"source-layer": "
|
|
11487
|
+
"source-layer": "amenity_points_centroids",
|
|
10928
11488
|
"minzoom": 15,
|
|
10929
11489
|
"maxzoom": 24,
|
|
10930
11490
|
"layout": {
|
|
@@ -10996,7 +11556,7 @@ ohmVectorStyles = {
|
|
|
10996
11556
|
"id": "points_of_interest_other_archaeology",
|
|
10997
11557
|
"type": "symbol",
|
|
10998
11558
|
"source": "osm",
|
|
10999
|
-
"source-layer": "
|
|
11559
|
+
"source-layer": "other_points_centroids",
|
|
11000
11560
|
"minzoom": 14,
|
|
11001
11561
|
"maxzoom": 24,
|
|
11002
11562
|
"filter": [
|
|
@@ -11075,7 +11635,7 @@ ohmVectorStyles = {
|
|
|
11075
11635
|
"id": "points_of_interest_other_artwork",
|
|
11076
11636
|
"type": "symbol",
|
|
11077
11637
|
"source": "osm",
|
|
11078
|
-
"source-layer": "
|
|
11638
|
+
"source-layer": "other_points_centroids",
|
|
11079
11639
|
"minzoom": 15,
|
|
11080
11640
|
"maxzoom": 24,
|
|
11081
11641
|
"filter": [
|
|
@@ -11154,7 +11714,7 @@ ohmVectorStyles = {
|
|
|
11154
11714
|
"id": "points_powertower",
|
|
11155
11715
|
"type": "symbol",
|
|
11156
11716
|
"source": "osm",
|
|
11157
|
-
"source-layer": "
|
|
11717
|
+
"source-layer": "other_points_centroids",
|
|
11158
11718
|
"minzoom": 15,
|
|
11159
11719
|
"maxzoom": 24,
|
|
11160
11720
|
"filter": [
|
|
@@ -11177,7 +11737,7 @@ ohmVectorStyles = {
|
|
|
11177
11737
|
"id": "points_airport",
|
|
11178
11738
|
"type": "symbol",
|
|
11179
11739
|
"source": "osm",
|
|
11180
|
-
"source-layer": "
|
|
11740
|
+
"source-layer": "transport_points_centroids",
|
|
11181
11741
|
"minzoom": 10,
|
|
11182
11742
|
"maxzoom": 14,
|
|
11183
11743
|
"filter": [
|
|
@@ -11196,10 +11756,10 @@ ohmVectorStyles = {
|
|
|
11196
11756
|
}
|
|
11197
11757
|
},
|
|
11198
11758
|
{
|
|
11199
|
-
"id": "
|
|
11759
|
+
"id": "transport_points_centroids",
|
|
11200
11760
|
"type": "symbol",
|
|
11201
11761
|
"source": "osm",
|
|
11202
|
-
"source-layer": "
|
|
11762
|
+
"source-layer": "transport_points_centroids",
|
|
11203
11763
|
"minzoom": 14,
|
|
11204
11764
|
"maxzoom": 24,
|
|
11205
11765
|
"filter": [
|
|
@@ -11272,7 +11832,7 @@ ohmVectorStyles = {
|
|
|
11272
11832
|
"id": "points_placeofworshipother",
|
|
11273
11833
|
"type": "symbol",
|
|
11274
11834
|
"source": "osm",
|
|
11275
|
-
"source-layer": "
|
|
11835
|
+
"source-layer": "buildings_points_centroids",
|
|
11276
11836
|
"filter": [
|
|
11277
11837
|
"all",
|
|
11278
11838
|
[
|
|
@@ -11314,7 +11874,7 @@ ohmVectorStyles = {
|
|
|
11314
11874
|
"id": "points_religion",
|
|
11315
11875
|
"type": "symbol",
|
|
11316
11876
|
"source": "osm",
|
|
11317
|
-
"source-layer": "
|
|
11877
|
+
"source-layer": "buildings_points_centroids",
|
|
11318
11878
|
"filter": [
|
|
11319
11879
|
"all"
|
|
11320
11880
|
],
|
|
@@ -11330,7 +11890,7 @@ ohmVectorStyles = {
|
|
|
11330
11890
|
"id": "points_fromlanduse-z14",
|
|
11331
11891
|
"type": "symbol",
|
|
11332
11892
|
"source": "osm",
|
|
11333
|
-
"source-layer": "
|
|
11893
|
+
"source-layer": "landuse_points_centroids",
|
|
11334
11894
|
"minzoom": 14,
|
|
11335
11895
|
"filter": [
|
|
11336
11896
|
"==",
|
|
@@ -11367,7 +11927,7 @@ ohmVectorStyles = {
|
|
|
11367
11927
|
"id": "points_fromlanduse",
|
|
11368
11928
|
"type": "symbol",
|
|
11369
11929
|
"source": "osm",
|
|
11370
|
-
"source-layer": "
|
|
11930
|
+
"source-layer": "landuse_points_centroids",
|
|
11371
11931
|
"minzoom": 16,
|
|
11372
11932
|
"layout": {
|
|
11373
11933
|
"icon-image": "{type}-18",
|
|
@@ -11423,7 +11983,7 @@ ohmVectorStyles = {
|
|
|
11423
11983
|
"id": "points_fromlanduseareas",
|
|
11424
11984
|
"type": "symbol",
|
|
11425
11985
|
"source": "osm",
|
|
11426
|
-
"source-layer": "
|
|
11986
|
+
"source-layer": "landuse_points_centroids",
|
|
11427
11987
|
"minzoom": 16,
|
|
11428
11988
|
"filter": [
|
|
11429
11989
|
"!",
|
|
@@ -11455,7 +12015,7 @@ ohmVectorStyles = {
|
|
|
11455
12015
|
"id": "points_of_interest_shop",
|
|
11456
12016
|
"type": "symbol",
|
|
11457
12017
|
"source": "osm",
|
|
11458
|
-
"source-layer": "
|
|
12018
|
+
"source-layer": "buildings_points_centroids",
|
|
11459
12019
|
"minzoom": 16,
|
|
11460
12020
|
"maxzoom": 24,
|
|
11461
12021
|
"filter": [
|
|
@@ -11601,7 +12161,7 @@ ohmVectorStyles = {
|
|
|
11601
12161
|
"id": "county_labels_z11",
|
|
11602
12162
|
"type": "symbol",
|
|
11603
12163
|
"source": "osm",
|
|
11604
|
-
"source-layer": "
|
|
12164
|
+
"source-layer": "place_points_centroids",
|
|
11605
12165
|
"minzoom": 8,
|
|
11606
12166
|
"maxzoom": 20,
|
|
11607
12167
|
"filter": [
|
|
@@ -11651,7 +12211,7 @@ ohmVectorStyles = {
|
|
|
11651
12211
|
"id": "city_locality_labels_other_z11",
|
|
11652
12212
|
"type": "symbol",
|
|
11653
12213
|
"source": "osm",
|
|
11654
|
-
"source-layer": "
|
|
12214
|
+
"source-layer": "place_points_centroids",
|
|
11655
12215
|
"minzoom": 15,
|
|
11656
12216
|
"maxzoom": 20,
|
|
11657
12217
|
"filter": [
|
|
@@ -11703,7 +12263,7 @@ ohmVectorStyles = {
|
|
|
11703
12263
|
"id": "city_labels_other_z11",
|
|
11704
12264
|
"type": "symbol",
|
|
11705
12265
|
"source": "osm",
|
|
11706
|
-
"source-layer": "
|
|
12266
|
+
"source-layer": "place_points_centroids",
|
|
11707
12267
|
"minzoom": 11,
|
|
11708
12268
|
"maxzoom": 20,
|
|
11709
12269
|
"filter": [
|
|
@@ -11759,7 +12319,7 @@ ohmVectorStyles = {
|
|
|
11759
12319
|
"id": "city_labels_town_z8",
|
|
11760
12320
|
"type": "symbol",
|
|
11761
12321
|
"source": "osm",
|
|
11762
|
-
"source-layer": "
|
|
12322
|
+
"source-layer": "place_points_centroids",
|
|
11763
12323
|
"minzoom": 8,
|
|
11764
12324
|
"maxzoom": 20,
|
|
11765
12325
|
"filter": [
|
|
@@ -11806,7 +12366,7 @@ ohmVectorStyles = {
|
|
|
11806
12366
|
"id": "city_labels_z11",
|
|
11807
12367
|
"type": "symbol",
|
|
11808
12368
|
"source": "osm",
|
|
11809
|
-
"source-layer": "
|
|
12369
|
+
"source-layer": "place_points_centroids",
|
|
11810
12370
|
"minzoom": 11,
|
|
11811
12371
|
"maxzoom": 20,
|
|
11812
12372
|
"filter": [
|
|
@@ -11853,7 +12413,7 @@ ohmVectorStyles = {
|
|
|
11853
12413
|
"id": "city_labels_z6",
|
|
11854
12414
|
"type": "symbol",
|
|
11855
12415
|
"source": "osm",
|
|
11856
|
-
"source-layer": "
|
|
12416
|
+
"source-layer": "place_points_centroids",
|
|
11857
12417
|
"minzoom": 6,
|
|
11858
12418
|
"maxzoom": 11,
|
|
11859
12419
|
"filter": [
|
|
@@ -11920,7 +12480,7 @@ ohmVectorStyles = {
|
|
|
11920
12480
|
"id": "city_capital_labels_z6",
|
|
11921
12481
|
"type": "symbol",
|
|
11922
12482
|
"source": "osm",
|
|
11923
|
-
"source-layer": "
|
|
12483
|
+
"source-layer": "place_points_centroids",
|
|
11924
12484
|
"minzoom": 6,
|
|
11925
12485
|
"maxzoom": 11,
|
|
11926
12486
|
"filter": [
|
|
@@ -12078,7 +12638,7 @@ ohmVectorStyles = {
|
|
|
12078
12638
|
"id": "state_points_labels",
|
|
12079
12639
|
"type": "symbol",
|
|
12080
12640
|
"source": "osm",
|
|
12081
|
-
"source-layer": "
|
|
12641
|
+
"source-layer": "place_points_centroids",
|
|
12082
12642
|
"minzoom": 5,
|
|
12083
12643
|
"maxzoom": 20,
|
|
12084
12644
|
"filter": [
|
|
@@ -12296,7 +12856,7 @@ ohmVectorStyles = {
|
|
|
12296
12856
|
"id": "country_points_labels",
|
|
12297
12857
|
"type": "symbol",
|
|
12298
12858
|
"source": "osm",
|
|
12299
|
-
"source-layer": "
|
|
12859
|
+
"source-layer": "place_points_centroids",
|
|
12300
12860
|
"minzoom": 0,
|
|
12301
12861
|
"maxzoom": 12,
|
|
12302
12862
|
"filter": [
|
|
@@ -12377,14 +12937,16 @@ ohmVectorStyles = {
|
|
|
12377
12937
|
}
|
|
12378
12938
|
}
|
|
12379
12939
|
],
|
|
12940
|
+
"attribution": "<a href=\"https://www.openhistoricalmap.org/\">OpenHistoricalMap</a>",
|
|
12380
12941
|
"id": "ab271ed3-6fe4-403a-b5ae-07113f8c57ab"
|
|
12381
12942
|
},
|
|
12382
12943
|
"JapaneseScroll": {
|
|
12383
12944
|
"version": 8,
|
|
12384
|
-
"name": "ohm-japanese-scroll
|
|
12945
|
+
"name": "ohm-japanese-scroll",
|
|
12385
12946
|
"metadata": {
|
|
12386
12947
|
"maputnik:renderer": "mbgljs"
|
|
12387
12948
|
},
|
|
12949
|
+
"attribution": "<a href=\"https://www.openhistoricalmap.org/\">OpenHistoricalMap</a>",
|
|
12388
12950
|
"sources": {
|
|
12389
12951
|
"osm": {
|
|
12390
12952
|
"type": "vector",
|
|
@@ -15999,7 +16561,7 @@ ohmVectorStyles = {
|
|
|
15999
16561
|
"id": "city_labels_z6",
|
|
16000
16562
|
"type": "symbol",
|
|
16001
16563
|
"source": "osm",
|
|
16002
|
-
"source-layer": "
|
|
16564
|
+
"source-layer": "place_points_centroids",
|
|
16003
16565
|
"minzoom": 6,
|
|
16004
16566
|
"maxzoom": 15,
|
|
16005
16567
|
"filter": [
|
|
@@ -16089,7 +16651,7 @@ ohmVectorStyles = {
|
|
|
16089
16651
|
"id": "city_capital_labels",
|
|
16090
16652
|
"type": "symbol",
|
|
16091
16653
|
"source": "osm",
|
|
16092
|
-
"source-layer": "
|
|
16654
|
+
"source-layer": "place_points_centroids",
|
|
16093
16655
|
"minzoom": 4,
|
|
16094
16656
|
"maxzoom": 15,
|
|
16095
16657
|
"filter": [
|
|
@@ -16246,7 +16808,7 @@ ohmVectorStyles = {
|
|
|
16246
16808
|
"id": "state_points_labels",
|
|
16247
16809
|
"type": "symbol",
|
|
16248
16810
|
"source": "osm",
|
|
16249
|
-
"source-layer": "
|
|
16811
|
+
"source-layer": "place_points_centroids",
|
|
16250
16812
|
"minzoom": 5,
|
|
16251
16813
|
"maxzoom": 20,
|
|
16252
16814
|
"filter": [
|
|
@@ -16375,7 +16937,7 @@ ohmVectorStyles = {
|
|
|
16375
16937
|
"id": "country_points_labels",
|
|
16376
16938
|
"type": "symbol",
|
|
16377
16939
|
"source": "osm",
|
|
16378
|
-
"source-layer": "
|
|
16940
|
+
"source-layer": "place_points_centroids",
|
|
16379
16941
|
"minzoom": 0,
|
|
16380
16942
|
"maxzoom": 10,
|
|
16381
16943
|
"filter": [
|
|
@@ -16432,8 +16994,22 @@ ohmVectorStyles = {
|
|
|
16432
16994
|
"id": "mountains",
|
|
16433
16995
|
"type": "symbol",
|
|
16434
16996
|
"source": "osm",
|
|
16435
|
-
"source-layer": "
|
|
16997
|
+
"source-layer": "landuse_points_centroids",
|
|
16436
16998
|
"minzoom": 7,
|
|
16999
|
+
"filter": [
|
|
17000
|
+
"in",
|
|
17001
|
+
[
|
|
17002
|
+
"get",
|
|
17003
|
+
"type"
|
|
17004
|
+
],
|
|
17005
|
+
[
|
|
17006
|
+
"literal",
|
|
17007
|
+
[
|
|
17008
|
+
"peak",
|
|
17009
|
+
"mountain_range"
|
|
17010
|
+
]
|
|
17011
|
+
]
|
|
17012
|
+
],
|
|
16437
17013
|
"layout": {
|
|
16438
17014
|
"visibility": "visible",
|
|
16439
17015
|
"icon-image": "mountain"
|
|
@@ -16444,10 +17020,11 @@ ohmVectorStyles = {
|
|
|
16444
17020
|
},
|
|
16445
17021
|
"Railway": {
|
|
16446
17022
|
"version": 8,
|
|
16447
|
-
"name": "
|
|
17023
|
+
"name": "ohm-railway",
|
|
16448
17024
|
"metadata": {
|
|
16449
17025
|
"maputnik:renderer": "mbgljs"
|
|
16450
17026
|
},
|
|
17027
|
+
"attribution": "<a href=\"https://www.openhistoricalmap.org/\">OpenHistoricalMap</a>",
|
|
16451
17028
|
"sources": {
|
|
16452
17029
|
"osm": {
|
|
16453
17030
|
"type": "vector",
|
|
@@ -18180,6 +18757,90 @@ ohmVectorStyles = {
|
|
|
18180
18757
|
"fill-outline-color": "rgba(195, 188, 188, 1)"
|
|
18181
18758
|
}
|
|
18182
18759
|
},
|
|
18760
|
+
{
|
|
18761
|
+
"id": "transport_passenger_platform",
|
|
18762
|
+
"type": "fill",
|
|
18763
|
+
"source": "osm",
|
|
18764
|
+
"source-layer": "transport_areas",
|
|
18765
|
+
"minzoom": 14,
|
|
18766
|
+
"filter": [
|
|
18767
|
+
"==",
|
|
18768
|
+
[
|
|
18769
|
+
"get",
|
|
18770
|
+
"type"
|
|
18771
|
+
],
|
|
18772
|
+
"platform"
|
|
18773
|
+
],
|
|
18774
|
+
"layout": {
|
|
18775
|
+
"visibility": "visible"
|
|
18776
|
+
},
|
|
18777
|
+
"paint": {
|
|
18778
|
+
"fill-color": "rgba(0, 0, 0, 0.5)"
|
|
18779
|
+
}
|
|
18780
|
+
},
|
|
18781
|
+
{
|
|
18782
|
+
"id": "transport_turntable",
|
|
18783
|
+
"type": "fill",
|
|
18784
|
+
"source": "osm",
|
|
18785
|
+
"source-layer": "transport_areas",
|
|
18786
|
+
"minzoom": 14,
|
|
18787
|
+
"filter": [
|
|
18788
|
+
"==",
|
|
18789
|
+
[
|
|
18790
|
+
"get",
|
|
18791
|
+
"type"
|
|
18792
|
+
],
|
|
18793
|
+
"turntable"
|
|
18794
|
+
],
|
|
18795
|
+
"layout": {
|
|
18796
|
+
"visibility": "visible"
|
|
18797
|
+
},
|
|
18798
|
+
"paint": {
|
|
18799
|
+
"fill-color": "rgba(193, 193, 193, 1)"
|
|
18800
|
+
}
|
|
18801
|
+
},
|
|
18802
|
+
{
|
|
18803
|
+
"id": "transport_traverser",
|
|
18804
|
+
"type": "fill",
|
|
18805
|
+
"source": "osm",
|
|
18806
|
+
"source-layer": "transport_areas",
|
|
18807
|
+
"minzoom": 14,
|
|
18808
|
+
"filter": [
|
|
18809
|
+
"==",
|
|
18810
|
+
[
|
|
18811
|
+
"get",
|
|
18812
|
+
"type"
|
|
18813
|
+
],
|
|
18814
|
+
"traverser"
|
|
18815
|
+
],
|
|
18816
|
+
"layout": {
|
|
18817
|
+
"visibility": "visible"
|
|
18818
|
+
},
|
|
18819
|
+
"paint": {
|
|
18820
|
+
"fill-color": "rgba(193, 193, 193, 1)"
|
|
18821
|
+
}
|
|
18822
|
+
},
|
|
18823
|
+
{
|
|
18824
|
+
"id": "transport_freight_platform",
|
|
18825
|
+
"type": "fill",
|
|
18826
|
+
"source": "osm",
|
|
18827
|
+
"source-layer": "transport_areas",
|
|
18828
|
+
"minzoom": 14,
|
|
18829
|
+
"filter": [
|
|
18830
|
+
"==",
|
|
18831
|
+
[
|
|
18832
|
+
"get",
|
|
18833
|
+
"type"
|
|
18834
|
+
],
|
|
18835
|
+
"loading_ramp"
|
|
18836
|
+
],
|
|
18837
|
+
"layout": {
|
|
18838
|
+
"visibility": "visible"
|
|
18839
|
+
},
|
|
18840
|
+
"paint": {
|
|
18841
|
+
"fill-color": "rgba(0, 0, 0, 0.5)"
|
|
18842
|
+
}
|
|
18843
|
+
},
|
|
18183
18844
|
{
|
|
18184
18845
|
"id": "aero_taxiway_lines",
|
|
18185
18846
|
"type": "line",
|
|
@@ -25345,6 +26006,14 @@ ohmVectorStyles = {
|
|
|
25345
26006
|
"rail"
|
|
25346
26007
|
]
|
|
25347
26008
|
]
|
|
26009
|
+
],
|
|
26010
|
+
[
|
|
26011
|
+
"==",
|
|
26012
|
+
[
|
|
26013
|
+
"get",
|
|
26014
|
+
"tunnel"
|
|
26015
|
+
],
|
|
26016
|
+
0
|
|
25348
26017
|
]
|
|
25349
26018
|
],
|
|
25350
26019
|
"layout": {
|
|
@@ -25388,6 +26057,14 @@ ohmVectorStyles = {
|
|
|
25388
26057
|
],
|
|
25389
26058
|
"main"
|
|
25390
26059
|
],
|
|
26060
|
+
[
|
|
26061
|
+
"==",
|
|
26062
|
+
[
|
|
26063
|
+
"get",
|
|
26064
|
+
"tunnel"
|
|
26065
|
+
],
|
|
26066
|
+
0
|
|
26067
|
+
],
|
|
25391
26068
|
[
|
|
25392
26069
|
"in",
|
|
25393
26070
|
[
|
|
@@ -25717,6 +26394,14 @@ ohmVectorStyles = {
|
|
|
25717
26394
|
"service"
|
|
25718
26395
|
],
|
|
25719
26396
|
"spur"
|
|
26397
|
+
],
|
|
26398
|
+
[
|
|
26399
|
+
"==",
|
|
26400
|
+
[
|
|
26401
|
+
"get",
|
|
26402
|
+
"tunnel"
|
|
26403
|
+
],
|
|
26404
|
+
0
|
|
25720
26405
|
]
|
|
25721
26406
|
],
|
|
25722
26407
|
"layout": {
|
|
@@ -25822,6 +26507,14 @@ ohmVectorStyles = {
|
|
|
25822
26507
|
"usage"
|
|
25823
26508
|
],
|
|
25824
26509
|
"tourism"
|
|
26510
|
+
],
|
|
26511
|
+
[
|
|
26512
|
+
"==",
|
|
26513
|
+
[
|
|
26514
|
+
"get",
|
|
26515
|
+
"tunnel"
|
|
26516
|
+
],
|
|
26517
|
+
0
|
|
25825
26518
|
]
|
|
25826
26519
|
],
|
|
25827
26520
|
"layout": {
|
|
@@ -25896,6 +26589,14 @@ ohmVectorStyles = {
|
|
|
25896
26589
|
"usage"
|
|
25897
26590
|
],
|
|
25898
26591
|
"tourism"
|
|
26592
|
+
],
|
|
26593
|
+
[
|
|
26594
|
+
"==",
|
|
26595
|
+
[
|
|
26596
|
+
"get",
|
|
26597
|
+
"tunnel"
|
|
26598
|
+
],
|
|
26599
|
+
0
|
|
25899
26600
|
]
|
|
25900
26601
|
],
|
|
25901
26602
|
"layout": {
|
|
@@ -25999,6 +26700,14 @@ ohmVectorStyles = {
|
|
|
25999
26700
|
"usage"
|
|
26000
26701
|
],
|
|
26001
26702
|
"military"
|
|
26703
|
+
],
|
|
26704
|
+
[
|
|
26705
|
+
"==",
|
|
26706
|
+
[
|
|
26707
|
+
"get",
|
|
26708
|
+
"tunnel"
|
|
26709
|
+
],
|
|
26710
|
+
0
|
|
26002
26711
|
]
|
|
26003
26712
|
],
|
|
26004
26713
|
"layout": {
|
|
@@ -26073,6 +26782,14 @@ ohmVectorStyles = {
|
|
|
26073
26782
|
"usage"
|
|
26074
26783
|
],
|
|
26075
26784
|
"military"
|
|
26785
|
+
],
|
|
26786
|
+
[
|
|
26787
|
+
"==",
|
|
26788
|
+
[
|
|
26789
|
+
"get",
|
|
26790
|
+
"tunnel"
|
|
26791
|
+
],
|
|
26792
|
+
0
|
|
26076
26793
|
]
|
|
26077
26794
|
],
|
|
26078
26795
|
"layout": {
|
|
@@ -26176,6 +26893,14 @@ ohmVectorStyles = {
|
|
|
26176
26893
|
"usage"
|
|
26177
26894
|
],
|
|
26178
26895
|
"branch"
|
|
26896
|
+
],
|
|
26897
|
+
[
|
|
26898
|
+
"==",
|
|
26899
|
+
[
|
|
26900
|
+
"get",
|
|
26901
|
+
"tunnel"
|
|
26902
|
+
],
|
|
26903
|
+
0
|
|
26179
26904
|
]
|
|
26180
26905
|
],
|
|
26181
26906
|
"layout": {
|
|
@@ -26250,6 +26975,14 @@ ohmVectorStyles = {
|
|
|
26250
26975
|
"usage"
|
|
26251
26976
|
],
|
|
26252
26977
|
"branch"
|
|
26978
|
+
],
|
|
26979
|
+
[
|
|
26980
|
+
"==",
|
|
26981
|
+
[
|
|
26982
|
+
"get",
|
|
26983
|
+
"tunnel"
|
|
26984
|
+
],
|
|
26985
|
+
0
|
|
26253
26986
|
]
|
|
26254
26987
|
],
|
|
26255
26988
|
"layout": {
|
|
@@ -26353,6 +27086,14 @@ ohmVectorStyles = {
|
|
|
26353
27086
|
"usage"
|
|
26354
27087
|
],
|
|
26355
27088
|
"industrial"
|
|
27089
|
+
],
|
|
27090
|
+
[
|
|
27091
|
+
"==",
|
|
27092
|
+
[
|
|
27093
|
+
"get",
|
|
27094
|
+
"tunnel"
|
|
27095
|
+
],
|
|
27096
|
+
0
|
|
26356
27097
|
]
|
|
26357
27098
|
],
|
|
26358
27099
|
"layout": {
|
|
@@ -26427,6 +27168,14 @@ ohmVectorStyles = {
|
|
|
26427
27168
|
"usage"
|
|
26428
27169
|
],
|
|
26429
27170
|
"industrial"
|
|
27171
|
+
],
|
|
27172
|
+
[
|
|
27173
|
+
"==",
|
|
27174
|
+
[
|
|
27175
|
+
"get",
|
|
27176
|
+
"tunnel"
|
|
27177
|
+
],
|
|
27178
|
+
0
|
|
26430
27179
|
]
|
|
26431
27180
|
],
|
|
26432
27181
|
"layout": {
|
|
@@ -27804,7 +28553,7 @@ ohmVectorStyles = {
|
|
|
27804
28553
|
"id": "water_pointlabels_ocean_sea",
|
|
27805
28554
|
"type": "symbol",
|
|
27806
28555
|
"source": "osm",
|
|
27807
|
-
"source-layer": "
|
|
28556
|
+
"source-layer": "place_points_centroids",
|
|
27808
28557
|
"minzoom": 0,
|
|
27809
28558
|
"maxzoom": 24,
|
|
27810
28559
|
"filter": [
|
|
@@ -28291,7 +29040,7 @@ ohmVectorStyles = {
|
|
|
28291
29040
|
"id": "points_of_interest_place_areas",
|
|
28292
29041
|
"type": "symbol",
|
|
28293
29042
|
"source": "osm",
|
|
28294
|
-
"source-layer": "
|
|
29043
|
+
"source-layer": "amenity_points_centroids",
|
|
28295
29044
|
"minzoom": 16,
|
|
28296
29045
|
"filter": [
|
|
28297
29046
|
"!",
|
|
@@ -28341,10 +29090,15 @@ ohmVectorStyles = {
|
|
|
28341
29090
|
"id": "points_of_interest_frombuildings",
|
|
28342
29091
|
"type": "symbol",
|
|
28343
29092
|
"source": "osm",
|
|
28344
|
-
"source-layer": "
|
|
29093
|
+
"source-layer": "buildings_points_centroids",
|
|
28345
29094
|
"minzoom": 16,
|
|
28346
29095
|
"filter": [
|
|
28347
|
-
"
|
|
29096
|
+
"!=",
|
|
29097
|
+
[
|
|
29098
|
+
"get",
|
|
29099
|
+
"type"
|
|
29100
|
+
],
|
|
29101
|
+
"parking"
|
|
28348
29102
|
],
|
|
28349
29103
|
"layout": {
|
|
28350
29104
|
"icon-image": [
|
|
@@ -28410,7 +29164,7 @@ ohmVectorStyles = {
|
|
|
28410
29164
|
"id": "points_of_interest_fromareasz14",
|
|
28411
29165
|
"type": "symbol",
|
|
28412
29166
|
"source": "osm",
|
|
28413
|
-
"source-layer": "
|
|
29167
|
+
"source-layer": "amenity_points_centroids",
|
|
28414
29168
|
"minzoom": 14,
|
|
28415
29169
|
"maxzoom": 16,
|
|
28416
29170
|
"filter": [
|
|
@@ -28475,7 +29229,7 @@ ohmVectorStyles = {
|
|
|
28475
29229
|
"id": "points_of_interest_fromareas",
|
|
28476
29230
|
"type": "symbol",
|
|
28477
29231
|
"source": "osm",
|
|
28478
|
-
"source-layer": "
|
|
29232
|
+
"source-layer": "amenity_points_centroids",
|
|
28479
29233
|
"minzoom": 16,
|
|
28480
29234
|
"maxzoom": 24,
|
|
28481
29235
|
"filter": [
|
|
@@ -28559,7 +29313,7 @@ ohmVectorStyles = {
|
|
|
28559
29313
|
"id": "points_of_interest_amenity_14",
|
|
28560
29314
|
"type": "symbol",
|
|
28561
29315
|
"source": "osm",
|
|
28562
|
-
"source-layer": "
|
|
29316
|
+
"source-layer": "amenity_points_centroids",
|
|
28563
29317
|
"minzoom": 14,
|
|
28564
29318
|
"maxzoom": 16,
|
|
28565
29319
|
"filter": [
|
|
@@ -28604,7 +29358,7 @@ ohmVectorStyles = {
|
|
|
28604
29358
|
"id": "points_of_interest_amenity",
|
|
28605
29359
|
"type": "symbol",
|
|
28606
29360
|
"source": "osm",
|
|
28607
|
-
"source-layer": "
|
|
29361
|
+
"source-layer": "amenity_points_centroids",
|
|
28608
29362
|
"minzoom": 15,
|
|
28609
29363
|
"maxzoom": 24,
|
|
28610
29364
|
"filter": [
|
|
@@ -28689,7 +29443,7 @@ ohmVectorStyles = {
|
|
|
28689
29443
|
"id": "points_of_interest_other",
|
|
28690
29444
|
"type": "symbol",
|
|
28691
29445
|
"source": "osm",
|
|
28692
|
-
"source-layer": "
|
|
29446
|
+
"source-layer": "other_points_centroids",
|
|
28693
29447
|
"minzoom": 15,
|
|
28694
29448
|
"maxzoom": 24,
|
|
28695
29449
|
"filter": [
|
|
@@ -28794,7 +29548,7 @@ ohmVectorStyles = {
|
|
|
28794
29548
|
"id": "points_of_interest_other_archaeology",
|
|
28795
29549
|
"type": "symbol",
|
|
28796
29550
|
"source": "osm",
|
|
28797
|
-
"source-layer": "
|
|
29551
|
+
"source-layer": "other_points_centroids",
|
|
28798
29552
|
"minzoom": 14,
|
|
28799
29553
|
"maxzoom": 24,
|
|
28800
29554
|
"filter": [
|
|
@@ -28883,7 +29637,7 @@ ohmVectorStyles = {
|
|
|
28883
29637
|
"id": "points_of_interest_other_artwork",
|
|
28884
29638
|
"type": "symbol",
|
|
28885
29639
|
"source": "osm",
|
|
28886
|
-
"source-layer": "
|
|
29640
|
+
"source-layer": "other_points_centroids",
|
|
28887
29641
|
"minzoom": 15,
|
|
28888
29642
|
"maxzoom": 24,
|
|
28889
29643
|
"filter": [
|
|
@@ -28972,7 +29726,7 @@ ohmVectorStyles = {
|
|
|
28972
29726
|
"id": "points_powertower",
|
|
28973
29727
|
"type": "symbol",
|
|
28974
29728
|
"source": "osm",
|
|
28975
|
-
"source-layer": "
|
|
29729
|
+
"source-layer": "other_points_centroids",
|
|
28976
29730
|
"minzoom": 15,
|
|
28977
29731
|
"maxzoom": 24,
|
|
28978
29732
|
"filter": [
|
|
@@ -28995,7 +29749,7 @@ ohmVectorStyles = {
|
|
|
28995
29749
|
"id": "points_airport",
|
|
28996
29750
|
"type": "symbol",
|
|
28997
29751
|
"source": "osm",
|
|
28998
|
-
"source-layer": "
|
|
29752
|
+
"source-layer": "transport_points_centroids",
|
|
28999
29753
|
"minzoom": 10,
|
|
29000
29754
|
"maxzoom": 14,
|
|
29001
29755
|
"filter": [
|
|
@@ -29017,7 +29771,7 @@ ohmVectorStyles = {
|
|
|
29017
29771
|
"id": "transport_railstation_points",
|
|
29018
29772
|
"type": "symbol",
|
|
29019
29773
|
"source": "osm",
|
|
29020
|
-
"source-layer": "
|
|
29774
|
+
"source-layer": "transport_points_centroids",
|
|
29021
29775
|
"minzoom": 14,
|
|
29022
29776
|
"maxzoom": 24,
|
|
29023
29777
|
"filter": [
|
|
@@ -29096,10 +29850,10 @@ ohmVectorStyles = {
|
|
|
29096
29850
|
}
|
|
29097
29851
|
},
|
|
29098
29852
|
{
|
|
29099
|
-
"id": "
|
|
29853
|
+
"id": "transport_points_centroids",
|
|
29100
29854
|
"type": "symbol",
|
|
29101
29855
|
"source": "osm",
|
|
29102
|
-
"source-layer": "
|
|
29856
|
+
"source-layer": "transport_points_centroids",
|
|
29103
29857
|
"minzoom": 14,
|
|
29104
29858
|
"maxzoom": 24,
|
|
29105
29859
|
"filter": [
|
|
@@ -29200,7 +29954,7 @@ ohmVectorStyles = {
|
|
|
29200
29954
|
"id": "points_placeofworshipother",
|
|
29201
29955
|
"type": "symbol",
|
|
29202
29956
|
"source": "osm",
|
|
29203
|
-
"source-layer": "
|
|
29957
|
+
"source-layer": "buildings_points_centroids",
|
|
29204
29958
|
"filter": [
|
|
29205
29959
|
"all",
|
|
29206
29960
|
[
|
|
@@ -29242,7 +29996,7 @@ ohmVectorStyles = {
|
|
|
29242
29996
|
"id": "points_religion",
|
|
29243
29997
|
"type": "symbol",
|
|
29244
29998
|
"source": "osm",
|
|
29245
|
-
"source-layer": "
|
|
29999
|
+
"source-layer": "buildings_points_centroids",
|
|
29246
30000
|
"filter": [
|
|
29247
30001
|
"all"
|
|
29248
30002
|
],
|
|
@@ -29265,7 +30019,7 @@ ohmVectorStyles = {
|
|
|
29265
30019
|
"id": "points_fromlanduse-z14",
|
|
29266
30020
|
"type": "symbol",
|
|
29267
30021
|
"source": "osm",
|
|
29268
|
-
"source-layer": "
|
|
30022
|
+
"source-layer": "landuse_points_centroids",
|
|
29269
30023
|
"minzoom": 14,
|
|
29270
30024
|
"filter": [
|
|
29271
30025
|
"in",
|
|
@@ -29317,7 +30071,7 @@ ohmVectorStyles = {
|
|
|
29317
30071
|
"id": "points_fromlanduse",
|
|
29318
30072
|
"type": "symbol",
|
|
29319
30073
|
"source": "osm",
|
|
29320
|
-
"source-layer": "
|
|
30074
|
+
"source-layer": "landuse_points_centroids",
|
|
29321
30075
|
"minzoom": 16,
|
|
29322
30076
|
"layout": {
|
|
29323
30077
|
"icon-image": [
|
|
@@ -29383,7 +30137,7 @@ ohmVectorStyles = {
|
|
|
29383
30137
|
"id": "points_fromlanduseareas",
|
|
29384
30138
|
"type": "symbol",
|
|
29385
30139
|
"source": "osm",
|
|
29386
|
-
"source-layer": "
|
|
30140
|
+
"source-layer": "landuse_points_centroids",
|
|
29387
30141
|
"minzoom": 16,
|
|
29388
30142
|
"filter": [
|
|
29389
30143
|
"!",
|
|
@@ -29422,7 +30176,7 @@ ohmVectorStyles = {
|
|
|
29422
30176
|
"id": "points_of_interest_shop",
|
|
29423
30177
|
"type": "symbol",
|
|
29424
30178
|
"source": "osm",
|
|
29425
|
-
"source-layer": "
|
|
30179
|
+
"source-layer": "buildings_points_centroids",
|
|
29426
30180
|
"minzoom": 16,
|
|
29427
30181
|
"maxzoom": 24,
|
|
29428
30182
|
"filter": [
|
|
@@ -29534,7 +30288,7 @@ ohmVectorStyles = {
|
|
|
29534
30288
|
"id": "county_labels_z11",
|
|
29535
30289
|
"type": "symbol",
|
|
29536
30290
|
"source": "osm",
|
|
29537
|
-
"source-layer": "
|
|
30291
|
+
"source-layer": "place_points_centroids",
|
|
29538
30292
|
"minzoom": 9,
|
|
29539
30293
|
"maxzoom": 20,
|
|
29540
30294
|
"filter": [
|
|
@@ -29592,7 +30346,7 @@ ohmVectorStyles = {
|
|
|
29592
30346
|
"id": "city_labels_other_z11",
|
|
29593
30347
|
"type": "symbol",
|
|
29594
30348
|
"source": "osm",
|
|
29595
|
-
"source-layer": "
|
|
30349
|
+
"source-layer": "place_points_centroids",
|
|
29596
30350
|
"minzoom": 11,
|
|
29597
30351
|
"maxzoom": 20,
|
|
29598
30352
|
"filter": [
|
|
@@ -29652,7 +30406,7 @@ ohmVectorStyles = {
|
|
|
29652
30406
|
"id": "city_labels_town_z8",
|
|
29653
30407
|
"type": "symbol",
|
|
29654
30408
|
"source": "osm",
|
|
29655
|
-
"source-layer": "
|
|
30409
|
+
"source-layer": "place_points_centroids",
|
|
29656
30410
|
"minzoom": 8,
|
|
29657
30411
|
"maxzoom": 20,
|
|
29658
30412
|
"filter": [
|
|
@@ -29707,7 +30461,7 @@ ohmVectorStyles = {
|
|
|
29707
30461
|
"id": "city_labels_z11",
|
|
29708
30462
|
"type": "symbol",
|
|
29709
30463
|
"source": "osm",
|
|
29710
|
-
"source-layer": "
|
|
30464
|
+
"source-layer": "place_points_centroids",
|
|
29711
30465
|
"minzoom": 11,
|
|
29712
30466
|
"maxzoom": 20,
|
|
29713
30467
|
"filter": [
|
|
@@ -29762,7 +30516,7 @@ ohmVectorStyles = {
|
|
|
29762
30516
|
"id": "city_capital_labels_z6",
|
|
29763
30517
|
"type": "symbol",
|
|
29764
30518
|
"source": "osm",
|
|
29765
|
-
"source-layer": "
|
|
30519
|
+
"source-layer": "place_points_centroids",
|
|
29766
30520
|
"minzoom": 6,
|
|
29767
30521
|
"maxzoom": 11,
|
|
29768
30522
|
"filter": [
|
|
@@ -29832,7 +30586,7 @@ ohmVectorStyles = {
|
|
|
29832
30586
|
"id": "city_labels_z6",
|
|
29833
30587
|
"type": "symbol",
|
|
29834
30588
|
"source": "osm",
|
|
29835
|
-
"source-layer": "
|
|
30589
|
+
"source-layer": "place_points_centroids",
|
|
29836
30590
|
"minzoom": 6,
|
|
29837
30591
|
"maxzoom": 11,
|
|
29838
30592
|
"filter": [
|
|
@@ -29970,7 +30724,7 @@ ohmVectorStyles = {
|
|
|
29970
30724
|
"id": "state_points_labels",
|
|
29971
30725
|
"type": "symbol",
|
|
29972
30726
|
"source": "osm",
|
|
29973
|
-
"source-layer": "
|
|
30727
|
+
"source-layer": "place_points_centroids",
|
|
29974
30728
|
"minzoom": 5,
|
|
29975
30729
|
"maxzoom": 20,
|
|
29976
30730
|
"filter": [
|
|
@@ -30140,7 +30894,7 @@ ohmVectorStyles = {
|
|
|
30140
30894
|
"id": "country_points_labels",
|
|
30141
30895
|
"type": "symbol",
|
|
30142
30896
|
"source": "osm",
|
|
30143
|
-
"source-layer": "
|
|
30897
|
+
"source-layer": "place_points_centroids",
|
|
30144
30898
|
"minzoom": 0,
|
|
30145
30899
|
"maxzoom": 12,
|
|
30146
30900
|
"filter": [
|
|
@@ -30200,10 +30954,11 @@ ohmVectorStyles = {
|
|
|
30200
30954
|
},
|
|
30201
30955
|
"Woodblock": {
|
|
30202
30956
|
"version": 8,
|
|
30203
|
-
"name": "ohm-woodblock
|
|
30957
|
+
"name": "ohm-woodblock",
|
|
30204
30958
|
"metadata": {
|
|
30205
30959
|
"maputnik:renderer": "mbgljs"
|
|
30206
30960
|
},
|
|
30961
|
+
"attribution": "<a href=\"https://www.openhistoricalmap.org/\">OpenHistoricalMap</a>",
|
|
30207
30962
|
"sources": {
|
|
30208
30963
|
"osm": {
|
|
30209
30964
|
"type": "vector",
|
|
@@ -33958,7 +34713,7 @@ ohmVectorStyles = {
|
|
|
33958
34713
|
"id": "city_labels_z6",
|
|
33959
34714
|
"type": "symbol",
|
|
33960
34715
|
"source": "osm",
|
|
33961
|
-
"source-layer": "
|
|
34716
|
+
"source-layer": "place_points_centroids",
|
|
33962
34717
|
"minzoom": 6,
|
|
33963
34718
|
"maxzoom": 15,
|
|
33964
34719
|
"filter": [
|
|
@@ -34047,7 +34802,7 @@ ohmVectorStyles = {
|
|
|
34047
34802
|
"id": "city_capital_labels",
|
|
34048
34803
|
"type": "symbol",
|
|
34049
34804
|
"source": "osm",
|
|
34050
|
-
"source-layer": "
|
|
34805
|
+
"source-layer": "place_points_centroids",
|
|
34051
34806
|
"minzoom": 4,
|
|
34052
34807
|
"maxzoom": 15,
|
|
34053
34808
|
"filter": [
|
|
@@ -34201,7 +34956,7 @@ ohmVectorStyles = {
|
|
|
34201
34956
|
"id": "state_points_labels",
|
|
34202
34957
|
"type": "symbol",
|
|
34203
34958
|
"source": "osm",
|
|
34204
|
-
"source-layer": "
|
|
34959
|
+
"source-layer": "place_points_centroids",
|
|
34205
34960
|
"minzoom": 4,
|
|
34206
34961
|
"maxzoom": 20,
|
|
34207
34962
|
"filter": [
|
|
@@ -34331,7 +35086,7 @@ ohmVectorStyles = {
|
|
|
34331
35086
|
"id": "country_points_labels",
|
|
34332
35087
|
"type": "symbol",
|
|
34333
35088
|
"source": "osm",
|
|
34334
|
-
"source-layer": "
|
|
35089
|
+
"source-layer": "place_points_centroids",
|
|
34335
35090
|
"minzoom": 0,
|
|
34336
35091
|
"maxzoom": 14,
|
|
34337
35092
|
"filter": [
|
|
@@ -34390,7 +35145,7 @@ ohmVectorStyles = {
|
|
|
34390
35145
|
"id": "map dragon",
|
|
34391
35146
|
"type": "symbol",
|
|
34392
35147
|
"source": "osm",
|
|
34393
|
-
"source-layer": "
|
|
35148
|
+
"source-layer": "place_points_centroids",
|
|
34394
35149
|
"filter": [
|
|
34395
35150
|
"==",
|
|
34396
35151
|
[
|
|
@@ -34425,7 +35180,7 @@ ohmVectorStyles = {
|
|
|
34425
35180
|
"id": "mermonster",
|
|
34426
35181
|
"type": "symbol",
|
|
34427
35182
|
"source": "osm",
|
|
34428
|
-
"source-layer": "
|
|
35183
|
+
"source-layer": "place_points_centroids",
|
|
34429
35184
|
"filter": [
|
|
34430
35185
|
"==",
|
|
34431
35186
|
[
|