forked from kothic/kothic.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
osmosnimki.js
2005 lines (1811 loc) · 91.9 KB
/
osmosnimki.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(function (MapCSS) {
'use strict';
function restyle(style, tags, zoom, type, selector) {
var s_default = {}, s_centerline = {}, s_ticks = {}, s_label = {};
if ((selector === 'canvas')) {
s_default['fill-color'] = '#C4D4F5';
}
if (((selector === 'area' && tags['natural'] === 'coastline'))) {
s_default['fill-color'] = '#fcf8e4';
s_default['-x-mapnik-layer'] = 'bottom';
}
if (((selector === 'area' && tags['natural'] === 'glacier') && zoom >= 3)) {
s_default['fill-color'] = '#fcfeff';
s_default['fill-image'] = 'glacier.png';
}
if (((selector === 'area' && tags['place'] === 'city') && zoom >= 10) || ((selector === 'area' && tags['place'] === 'town') && zoom >= 10)) {
s_default['fill-color'] = '#FAF7F7';
s_default['fill-opacity'] = 0.6;
s_default['z-index'] = 1;
}
if (((selector === 'area' && tags['place'] === 'hamlet') && zoom >= 10) || ((selector === 'area' && tags['place'] === 'village') && zoom >= 10) || ((selector === 'area' && tags['place'] === 'locality') && zoom >= 10)) {
s_default['fill-color'] = '#f3eceb';
s_default['fill-opacity'] = 0.6;
s_default['z-index'] = 1;
}
if (((selector === 'area' && tags['landuse'] === 'residential') && zoom >= 10) || ((selector === 'area' && tags['residential'] === 'urban') && zoom >= 10)) {
s_default['fill-color'] = '#F7EFEB';
s_default['z-index'] = 2;
}
if (((selector === 'area' && tags['residential'] === 'rural') && zoom >= 10)) {
s_default['fill-color'] = '#f4d7c7';
s_default['z-index'] = 2;
}
if (((selector === 'area' && tags['landuse'] === 'residential') && zoom >= 16)) {
s_default['width'] = 0.3;
s_default['color'] = '#cb8904';
s_default['z-index'] = 2;
}
if (((selector === 'area' && tags['landuse'] === 'allotments') && zoom >= 10) || ((selector === 'area' && tags['leisure'] === 'garden') && zoom >= 10 && zoom <= 15) || ((selector === 'area' && tags['landuse'] === 'orchard') && zoom >= 10 && zoom <= 15)) {
s_default['fill-color'] = '#edf2c1';
s_default['z-index'] = 3;
}
if (((selector === 'area' && tags['leisure'] === 'park') && zoom >= 10)) {
s_default['fill-color'] = '#c4e9a4';
s_default['z-index'] = 3;
s_default['fill-image'] = 'parks2.png';
}
if (((selector === 'area' && tags['leisure'] === 'garden') && zoom >= 16) || ((selector === 'area' && tags['landuse'] === 'orchard') && zoom >= 16)) {
s_default['fill-image'] = 'sady10.png';
s_default['z-index'] = 3;
}
if (((selector === 'area' && tags['natural'] === 'scrub') && zoom >= 12)) {
s_default['fill-color'] = '#e5f5dc';
s_default['fill-image'] = 'kust1.png';
s_default['z-index'] = 3;
}
if (((selector === 'area' && tags['natural'] === 'heath') && zoom >= 12)) {
s_default['fill-color'] = '#ecffe5';
s_default['z-index'] = 3;
}
if (((selector === 'area' && tags['landuse'] === 'industrial') && zoom >= 10) || ((selector === 'area' && tags['landuse'] === 'military') && zoom >= 10)) {
s_default['fill-color'] = '#ddd8da';
s_default['z-index'] = 3;
}
if (((selector === 'area' && tags['amenity'] === 'parking') && zoom >= 15)) {
s_default['fill-color'] = '#ecedf4';
s_default['z-index'] = 3;
}
if (((selector === 'area' && tags['natural'] === 'desert') && zoom >= 4)) {
s_default['fill-image'] = 'desert22.png';
}
if (((selector === 'area' && tags['natural'] === 'forest') && zoom >= 4) || ((selector === 'area' && tags['natural'] === 'wood') && zoom >= 4) || ((selector === 'area' && tags['landuse'] === 'forest') && zoom >= 4) || ((selector === 'area' && tags['landuse'] === 'wood') && zoom >= 4)) {
s_default['fill-color'] = '#d6f4c6';
s_default['z-index'] = 3;
}
if (((selector === 'area' && tags['landuse'] === 'garages') && zoom >= 10)) {
s_default['fill-color'] = '#ddd8da';
s_default['z-index'] = 3;
}
if (((selector === 'area' && tags['natural'] === 'forest') && zoom >= 10) || ((selector === 'area' && tags['natural'] === 'wood') && zoom >= 10) || ((selector === 'area' && tags['landuse'] === 'forest') && zoom >= 10) || ((selector === 'area' && tags['landuse'] === 'wood') && zoom >= 10)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-offset'] = 0;
s_default['font-size'] = '10';
s_default['font-family'] = 'DejaVu Serif Italic';
s_default['text-color'] = 'green';
s_default['text-allow-overlap'] = 'false';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['-x-mapnik-min-distance'] = '0 ';
}
if (((selector === 'area' && tags['landuse'] === 'grass') && zoom >= 12) || ((selector === 'area' && tags['natural'] === 'grass') && zoom >= 12) || ((selector === 'area' && tags['natural'] === 'meadow') && zoom >= 12) || ((selector === 'area' && tags['landuse'] === 'meadow') && zoom >= 12) || ((selector === 'area' && tags['landuse'] === 'recreation_ground') && zoom >= 12)) {
s_default['fill-color'] = '#f4ffe5';
s_default['z-index'] = 4;
}
if (((selector === 'area' && tags['natural'] === 'wetland') && zoom >= 10)) {
s_default['fill-image'] = 'swamp_world2.png';
s_default['z-index'] = 4;
}
if (((selector === 'area' && tags['landuse'] === 'farmland') && zoom >= 10) || ((selector === 'area' && tags['landuse'] === 'farm') && zoom >= 10) || ((selector === 'area' && tags['landuse'] === 'field') && zoom >= 10)) {
s_default['fill-color'] = '#fff5c4';
s_default['z-index'] = 5;
}
if (((selector === 'area' && tags['place'] === 'city') && zoom >= 6 && zoom <= 9) || ((selector === 'area' && tags['place'] === 'town') && zoom >= 6 && zoom <= 9)) {
s_default['fill-color'] = '#ffe1d0';
s_default['fill-opacity'] = 0.6;
s_default['z-index'] = 5;
}
if (((selector === 'area' && tags['landuse'] === 'cemetery') && zoom >= 10)) {
s_default['fill-color'] = '#e5f5dc';
s_default['z-index'] = 5;
s_default['fill-image'] = 'cemetry7_2.png';
}
if (((selector === 'area' && tags['aeroway'] === 'aerodrome') && zoom >= 13)) {
s_default['color'] = '#008ac6';
s_default['width'] = 0.8;
s_default['z-index'] = 5;
s_default['fill-image'] = 'bull2.png';
}
if (((selector === 'area' && tags['leisure'] === 'stadium') && zoom >= 12) || ((selector === 'area' && tags['leisure'] === 'pitch') && zoom >= 12)) {
s_default['fill-color'] = '#e3deb1';
s_default['z-index'] = 5;
}
if (((type === 'way' && tags['waterway'] === 'river') && zoom >= 7 && zoom <= 10)) {
s_default['color'] = '#C4D4F5';
s_default['width'] = 0.6;
s_default['z-index'] = 9;
}
if (((type === 'way' && tags['waterway'] === 'stream') && zoom >= 9 && zoom <= 10)) {
s_default['color'] = '#C4D4F5';
s_default['width'] = 0.3;
s_default['z-index'] = 9;
}
if (((type === 'way' && tags['waterway'] === 'river') && zoom >= 10 && zoom <= 14)) {
s_default['color'] = '#C4D4F5';
s_default['width'] = 0.7;
s_default['z-index'] = 9;
}
if (((type === 'way' && tags['waterway'] === 'river') && zoom >= 15)) {
s_default['color'] = '#C4D4F5';
s_default['width'] = 0.9;
s_default['z-index'] = 9;
}
if (((type === 'way' && tags['waterway'] === 'stream') && zoom >= 10)) {
s_default['color'] = '#C4D4F5';
s_default['width'] = 0.5;
s_default['z-index'] = 9;
}
if (((type === 'way' && tags['waterway'] === 'canal') && zoom >= 10)) {
s_default['color'] = '#abc4f5';
s_default['width'] = 0.6;
s_default['z-index'] = 9;
}
if (((selector === 'area' && tags['waterway'] === 'riverbank') && zoom >= 5) || ((selector === 'area' && tags['natural'] === 'water') && zoom >= 5) || ((selector === 'area' && tags['landuse'] === 'reservoir') && zoom >= 10)) {
s_default['fill-color'] = '#C4D4F5';
s_default['color'] = '#C4D4F5';
s_default['width'] = 0.1;
s_default['z-index'] = 9;
}
if (((selector === 'area' && tags['natural'] === 'water') && zoom >= 9)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-offset'] = 1;
s_default['font-size'] = '10';
s_default['font-family'] = 'DejaVu Serif Italic';
s_default['text-color'] = '#285fd1';
s_default['text-allow-overlap'] = 'false';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
}
if (((type === 'way' && tags['highway'] === 'construction') && zoom >= 15 && zoom <= 16)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['width'] = 2;
s_default['color'] = '#ffffff';
s_default['z-index'] = 10;
s_default['dashes'] = [9, 9];
}
if (((type === 'way' && tags['highway'] === 'construction') && zoom >= 17)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['width'] = 3;
s_default['color'] = '#ffffff';
s_default['z-index'] = 10;
s_default['dashes'] = [9, 9];
}
if (((type === 'way' && tags['highway'] === 'footway') && zoom >= 15) || ((type === 'way' && tags['highway'] === 'path') && zoom >= 15) || ((type === 'way' && tags['highway'] === 'cycleway') && zoom >= 15) || ((type === 'way' && tags['highway'] === 'pedestrian') && zoom >= 15)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['casing-width'] = 0.3;
s_default['casing-color'] = '#bf96ce';
s_default['width'] = 0.2;
s_default['color'] = '#ffffff';
s_default['z-index'] = 10;
s_default['dashes'] = [2, 2];
}
if (((type === 'way' && tags['highway'] === 'steps') && zoom >= 15)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['casing-width'] = 0.3;
s_default['casing-color'] = '#ffffff';
s_default['width'] = 3;
s_default['color'] = '#bf96ce';
s_default['z-index'] = 10;
s_default['dashes'] = [1, 1];
s_default['linecap'] = 'butt';
}
if (((type === 'way' && tags['highway'] === 'road') && zoom === 12) || ((type === 'way' && tags['highway'] === 'track') && zoom === 12) || ((type === 'way' && tags['highway'] === 'residential') && zoom === 12) || ((type === 'way' && tags['highway'] === 'secondary') && zoom === 9) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom >= 9 && zoom <= 10) || ((type === 'way' && tags['highway'] === 'service' && (tags['living_street'] === '-1' || tags['living_street'] === 'false' || tags['living_street'] === 'no') && tags['service'] !== 'parking_aisle') && zoom === 14)) {
s_default['width'] = 0.3;
s_default['opacity'] = 0.6;
s_default['color'] = '#996703';
s_default['z-index'] = 10;
}
if (((type === 'way' && tags['highway'] === 'road') && zoom === 13) || ((type === 'way' && tags['highway'] === 'track') && zoom === 13)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 0.6;
s_default['opacity'] = 0.5;
s_default['color'] = '#996703';
s_default['z-index'] = 10;
}
if (((type === 'way' && tags['highway'] === 'road') && zoom >= 14 && zoom <= 16) || ((type === 'way' && tags['highway'] === 'track') && zoom >= 14 && zoom <= 16)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 1.5;
s_default['color'] = '#ffffff';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 9;
}
if (((type === 'way' && tags['highway'] === 'road') && zoom >= 16) || ((type === 'way' && tags['highway'] === 'track') && zoom >= 16)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 2.5;
s_default['color'] = '#ffffff';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 9;
}
if (((type === 'way' && tags['highway'] === 'residential') && zoom === 13)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 1.2;
s_default['color'] = '#ffffff';
s_default['casing-width'] = 0.3;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 10;
}
if (((type === 'way' && tags['highway'] === 'service' && (tags['living_street'] === '1' || tags['living_street'] === 'true' || tags['living_street'] === 'yes')) && zoom === 15) || ((type === 'way' && tags['highway'] === 'service' && tags['service'] === 'parking_aisle') && zoom === 15)) {
s_default['width'] = 0.2;
s_default['opacity'] = 0.5;
s_default['color'] = '#996703';
s_default['z-index'] = 10;
}
if (((type === 'way' && tags['highway'] === 'service' && (tags['living_street'] === '1' || tags['living_street'] === 'true' || tags['living_street'] === 'yes')) && zoom >= 16) || ((type === 'way' && tags['highway'] === 'service' && tags['service'] === 'parking_aisle') && zoom >= 16)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 1.2;
s_default['color'] = '#ffffff';
s_default['casing-width'] = 0.3;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 10;
}
if (((type === 'way' && tags['highway'] === 'residential') && zoom >= 14 && zoom <= 15) || ((type === 'way' && tags['highway'] === 'unclassified') && zoom >= 14 && zoom <= 15) || ((type === 'way' && tags['highway'] === 'service' && (tags['living_street'] === '-1' || tags['living_street'] === 'false' || tags['living_street'] === 'no') && tags['service'] !== 'parking_aisle') && zoom === 15)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 2.5;
s_default['color'] = '#ffffff';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 10;
}
if (((type === 'way' && tags['highway'] === 'residential') && zoom === 16) || ((type === 'way' && tags['highway'] === 'unclassified') && zoom === 16) || ((type === 'way' && tags['highway'] === 'living_street') && zoom === 16) || ((type === 'way' && tags['highway'] === 'service' && (tags['living_street'] === '-1' || tags['living_street'] === 'false' || tags['living_street'] === 'no') && tags['service'] !== 'parking_aisle') && zoom === 16)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 3.5;
s_default['color'] = '#ffffff';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 10;
}
if (((type === 'way' && tags['highway'] === 'residential') && zoom >= 17) || ((type === 'way' && tags['highway'] === 'unclassified') && zoom >= 17) || ((type === 'way' && tags['highway'] === 'living_street') && zoom >= 17) || ((type === 'way' && tags['highway'] === 'service' && (tags['living_street'] === '-1' || tags['living_street'] === 'false' || tags['living_street'] === 'no') && tags['service'] !== 'parking_aisle') && zoom >= 17)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 4.5;
s_default['color'] = '#ffffff';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 10;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 10)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['width'] = 1.2;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.35;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 11) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom === 11)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 1.4;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.35;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 12) || ((type === 'way' && tags['highway'] === 'secondary_link') && zoom === 12) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom === 12) || ((type === 'way' && tags['highway'] === 'tertiary_link') && zoom === 12)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 3;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.35;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 13) || ((type === 'way' && tags['highway'] === 'secondary_link') && zoom === 13) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom === 13) || ((type === 'way' && tags['highway'] === 'tertiary_link') && zoom === 13)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Book';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 4;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.35;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 14) || ((type === 'way' && tags['highway'] === 'secondary_link') && zoom === 14) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom === 14) || ((type === 'way' && tags['highway'] === 'tertiary_link') && zoom === 14)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 5;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 15) || ((type === 'way' && tags['highway'] === 'secondary_link') && zoom === 15) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom === 15) || ((type === 'way' && tags['highway'] === 'tertiary_link') && zoom === 15)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 6;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 16) || ((type === 'way' && tags['highway'] === 'secondary_link') && zoom === 16) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom === 16) || ((type === 'way' && tags['highway'] === 'tertiary_link') && zoom === 16)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 7;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 17) || ((type === 'way' && tags['highway'] === 'secondary_link') && zoom === 17) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom === 17) || ((type === 'way' && tags['highway'] === 'tertiary_link') && zoom === 17)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 8;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'secondary') && zoom === 18) || ((type === 'way' && tags['highway'] === 'secondary_link') && zoom === 18) || ((type === 'way' && tags['highway'] === 'tertiary') && zoom === 18) || ((type === 'way' && tags['highway'] === 'tertiary_link') && zoom === 18)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 9;
s_default['color'] = '#fcffd1';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 11;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 7)) {
s_default['width'] = 1;
s_default['color'] = '#fcea97';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 8)) {
s_default['width'] = 2;
s_default['color'] = '#fcea97';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 9) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 9)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 2;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 10) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 10)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 3;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 11) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 11)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 4;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 12) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 12)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 5;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 13) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 13)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 6;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 14) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 14)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 7;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 15) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 15)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 8;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 16) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 16)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 9;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 17) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 17)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 10;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'primary') && zoom === 18) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom === 18)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 11;
s_default['color'] = '#fcea97';
s_default['casing-width'] = 0.5;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 12;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 6)) {
s_default['width'] = 0.9;
s_default['color'] = '#fbcd40';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'motorway') && zoom === 6)) {
s_default['width'] = 1;
s_default['color'] = '#fc9265';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 7)) {
s_default['width'] = 1;
s_default['color'] = '#fbcd40';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'motorway') && zoom === 7)) {
s_default['width'] = 1.2;
s_default['color'] = '#fc9265';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 8)) {
s_default['width'] = 2;
s_default['color'] = '#fbcd40';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'motorway') && zoom === 8)) {
s_default['width'] = 2;
s_default['color'] = '#fc9265';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 9) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 9)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 3;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 10) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 10)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 4;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 11) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 11)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 5;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 12) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 12)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 7;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 13) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 13)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 8;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 14) || ((type === 'way' && tags['highway'] === 'trunk_link') && zoom === 14) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 14) || ((type === 'way' && tags['highway'] === 'motorway_link') && zoom === 14)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 9;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 15) || ((type === 'way' && tags['highway'] === 'trunk_link') && zoom === 15) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 15) || ((type === 'way' && tags['highway'] === 'motorway_link') && zoom === 15)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 10;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 16) || ((type === 'way' && tags['highway'] === 'trunk_link') && zoom === 16) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 16) || ((type === 'way' && tags['highway'] === 'motorway_link') && zoom === 16)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 11;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 17) || ((type === 'way' && tags['highway'] === 'trunk_link') && zoom === 17) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 17) || ((type === 'way' && tags['highway'] === 'motorway_link') && zoom === 17)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 12;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom === 18) || ((type === 'way' && tags['highway'] === 'trunk_link') && zoom === 18) || ((type === 'way' && tags['highway'] === 'motorway') && zoom === 18) || ((type === 'way' && tags['highway'] === 'motorway_link') && zoom === 18)) {
s_default['text'] = MapCSS.e_localize(tags, 'name');
s_default['text-position'] = 'line';
s_default['text-color'] = '#404040';
s_default['font-family'] = 'DejaVu Sans Bold';
s_default['font-size'] = '9';
s_default['text-halo-radius'] = 1;
s_default['text-halo-color'] = '#ffffff';
s_default['width'] = 13;
s_default['color'] = '#ffd780';
s_default['casing-width'] = 1;
s_default['casing-color'] = '#996703';
s_default['z-index'] = 13;
}
if (((type === 'way' && tags['highway'] === 'trunk') && zoom >= 9) || ((type === 'way' && tags['highway'] === 'trunk_link') && zoom >= 9) || ((type === 'way' && tags['highway'] === 'motorway') && zoom >= 9) || ((type === 'way' && tags['highway'] === 'motorway_link') && zoom >= 9) || ((type === 'way' && tags['highway'] === 'primary') && zoom >= 13) || ((type === 'way' && tags['highway'] === 'primary_link') && zoom >= 13)) {
s_centerline['width'] = 0.3;
s_centerline['color'] = '#fa6478';
s_centerline['z-index'] = 14;
s_centerline['-x-mapnik-layer'] = 'top';
}
if (((type === 'way' && (tags['oneway'] === '1' || tags['oneway'] === 'true' || tags['oneway'] === 'yes')) && zoom >= 17)) {
s_default['line-style'] = 'arrows';
s_default['z-index'] = 15;
s_default['-x-mapnik-layer'] = 'top';
}
if (((selector === 'line' && tags['railway'] === 'rail') && zoom === 7)) {
s_default['width'] = 0.5;
s_default['color'] = '#303030';
s_default['z-index'] = 15;
}
if (((selector === 'line' && tags['railway'] === 'rail') && zoom === 7)) {
s_ticks['width'] = 0.3;
s_ticks['color'] = '#ffffff';
s_ticks['dashes'] = [3, 3];
s_ticks['z-index'] = 16;
}
if (((selector === 'line' && tags['railway'] === 'rail') && zoom === 8)) {
s_default['width'] = 0.6;
s_default['color'] = '#303030';
s_default['z-index'] = 15;
}
if (((selector === 'line' && tags['railway'] === 'rail') && zoom === 8)) {
s_ticks['width'] = 0.35;
s_ticks['color'] = '#ffffff';
s_ticks['dashes'] = [3, 3];
s_ticks['z-index'] = 16;
}
if (((selector === 'line' && tags['railway'] === 'rail') && zoom >= 9)) {
s_default['width'] = 1.4;
s_default['color'] = '#606060';
s_default['z-index'] = 15;
}
if (((selector === 'line' && tags['railway'] === 'rail') && zoom >= 9)) {
s_ticks['width'] = 1;
s_ticks['color'] = '#ffffff';
s_ticks['dashes'] = [6, 6];
s_ticks['z-index'] = 16;
}
if (((type === 'way' && tags['railway'] === 'subway') && zoom >= 12)) {
s_default['width'] = 3;
s_default['color'] = '#072889';
s_default['z-index'] = 15;
s_default['dashes'] = [3, 3];
s_default['opacity'] = 0.3;
s_default['linecap'] = 'butt';
s_default['-x-mapnik-layer'] = 'top';
}
if (((type === 'way' && tags['barrier'] === 'fence') && zoom >= 16)) {
s_default['width'] = 0.3;
s_default['color'] = 'black';
s_default['z-index'] = 16;
s_default['-x-mapnik-layer'] = 'top';
}
if (((type === 'way' && tags['barrier'] === 'wall') && zoom >= 16)) {
s_default['width'] = 0.5;
s_default['color'] = 'black';
s_default['z-index'] = 16;
s_default['-x-mapnik-layer'] = 'top';
}
if (((type === 'way' && tags['marking'] === 'sport' && (!tags.hasOwnProperty('colour')) && (!tags.hasOwnProperty('color'))) && zoom >= 15)) {
s_default['width'] = 0.5;
s_default['color'] = '#a0a0a0';
s_default['z-index'] = 16;
s_default['-x-mapnik-layer'] = 'top';
}
if (((type === 'way' && tags['marking'] === 'sport' && tags['colour'] === 'white') && zoom >= 15) || ((type === 'way' && tags['marking'] === 'sport' && tags['color'] === 'white') && zoom >= 15)) {
s_default['width'] = 1;
s_default['color'] = 'white';
s_default['z-index'] = 16;
s_default['-x-mapnik-layer'] = 'top';
}
if (((type === 'way' && tags['marking'] === 'sport' && tags['colour'] === 'red') && zoom >= 15) || ((type === 'way' && tags['marking'] === 'sport' && tags['color'] === 'red') && zoom >= 15)) {
s_default['width'] = 1;
s_default['color'] = '#c00000';
s_default['z-index'] = 16;
s_default['-x-mapnik-layer'] = 'top';
}
if (((type === 'way' && tags['marking'] === 'sport' && tags['colour'] === 'black') && zoom >= 15) || ((type === 'way' && tags['marking'] === 'sport' && tags['color'] === 'black') && zoom >= 15)) {
s_default['width'] = 1;
s_default['color'] = 'black';
s_default['z-index'] = 16;
s_default['-x-mapnik-layer'] = 'top';
}
if (((type === 'node' && tags['amenity'] === 'bus_station') && zoom >= 15)) {
s_default['icon-image'] = 'aut2_16x16_park.png';
}