-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTiramisu.xml
3717 lines (3382 loc) · 367 KB
/
Tiramisu.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
Tiramisù 4.4 for Oruxmaps and MapsForge compatible applications
by Maki
Mapsforge Style for Orux Maps and Openandromaps
developed for mountain hiking, mountain biking and cycling
Heavily based on the Openandromaps Elevate Theme by Tobias Kuehn http://www.openandromaps.org/kartenlegende/elevate
Many,many,many thanks,Tobias!
This theme is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License: http://creativecommons.org/licenses/by-nc-sa/3.0/
Patterns are either original or inspired by Elevate and redrawn in SVG
The marsh pattern is from http://www.sjjb.co.uk/mapicons
Symbols have been drawn by me or adapted from elements found in the following collections:
http://www.sjjb.co.uk/mapicons - CC-0 license
http://map-icons.com/ - Map Icons licensed under SIL OFL 1.1 http://scripts.sil.org/OFL
https://www.mapbox.com/maki/ - Licensed under the BSD license https://github.com/mapbox/maki/blob/gh-pages/LICENSE.txt
(BTW,my nickname has nothing to do with the mapbox one)
Contact me through: http://tartamillo.wordpress.com
******************************
Fixed and changed by IgorMagellan (see Tiramisu-changelog.txt)
Contact: [email protected]
-->
<rendertheme xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mapsforge.org/renderTheme"
xsi:schemaLocation="http://mapsforge.org/renderTheme https://github.com/mapsforge/mapsforge/raw/master/resources/renderTheme.xsd"
version="5" map-background="#ffffff" map-background-outside="#ffffff">
<!-- *** Styles *** -->
<stylemenu id="tiramisu_4_3" defaultvalue="tms_hiking" defaultlang="en">
<!-- Layers -->
<layer id="tms_contours" enabled="true">
<name lang="en" value="Contour lines" />
<name lang="ru" value="Контурные линии высот" />
<name lang="es" value="Curvas de nivel" />
<name lang="de" value="Höhenlinien" />
<name lang="it" value="Linee di contorno" />
<name lang="fr" value="Courbes de niveau" />
<cat id="tms_contours" />
</layer>
<layer id="tms_contours-lz" enabled="false">
<name lang="en" value="Contour lines (low zoom)" />
<name lang="ru" value="Контурные линии высот (малые масштабы, ≤ z13)" />
<name lang="es" value="Curvas de nivel (zoom bajo)" />
<name lang="de" value="Höhenlinien (geringer Zoom)" />
<name lang="it" value="Linee di contorno (zoom basso)" />
<name lang="fr" value="Courbes de niveau (faible zoom)" />
<cat id="tms_contours-lz" />
</layer>
<layer id="tms_terrain" enabled="true">
<name lang="en" value="Terrain ª" />
<name lang="ru" value="Местность ª" />
<name lang="es" value="Terreno" />
<name lang="de" value="Gelände ª" />
<name lang="it" value="Terrain ª" />
<name lang="fr" value="Terrain ª" />
<cat id="tms_terrain" />
</layer>
<layer id="tms_land-ele" enabled="true">
<name lang="en" value="Landscape elements" />
<name lang="ru" value="Элементы ландшафта" />
<name lang="es" value="Elementos del paisaje" />
<name lang="de" value="Landschaftselemente" />
<name lang="it" value="Elementi del paesaggio" />
<name lang="fr" value="Éléments paysagers" />
<cat id="tms_water_land" />
<cat id="tms_man-made" />
<cat id="tms_aerial" />
<cat id="tms_power" />
<cat id="tms_peak" />
<cat id="tms_relief" />
</layer>
<layer id="tms_water" enabled="true">
<name lang="en" value="Water points" />
<name lang="ru" value="Вода (Water points)" />
<name lang="es" value="Puntos de agua" />
<name lang="de" value="Wasserstellen" />
<name lang="it" value="Punti d'acqua" />
<name lang="fr" value="Points d'eau" />
<cat id="tms_water" />
</layer>
<layer id="tms_huts" enabled="true">
<name lang="en" value="Huts and shelters" />
<name lang="ru" value="Укрытия, хижины, избушки" />
<name lang="es" value="Cabañas y refugios" />
<name lang="de" value="Hütten und Schutzhütten" />
<name lang="it" value="Capanne e rifugi" />
<name lang="fr" value="Cabanes et abris" />
<cat id="tms_huts" />
</layer>
<layer id="tms_acco" enabled="false">
<name lang="en" value="Accommodation" />
<name lang="ru" value="Проживание: Турбазы, дачи, гостиницы, хостелы..." />
<name lang="es" value="Alojamiento" />
<name lang="de" value="Unterkunft" />
<name lang="it" value="Alloggio" />
<name lang="fr" value="Hébergement" />
<cat id="tms_acco" />
</layer>
<layer id="tms_picnic" enabled="true">
<name lang="en" value="Camping & Picnic" />
<name lang="ru" value="Отдых: Стоянки, кемпинги, места д/пикника, скамейки, туалеты.." />
<name lang="es" value="Camping y picnic" />
<name lang="de" value="Camping & Picknick" />
<name lang="it" value="Campeggio e Picnic" />
<name lang="fr" value="Camping & Pique-nique" />
<cat id="tms_camp" />
<cat id="tms_picnic" />
</layer>
<layer id="tms_hknw" enabled="true">
<name lang="en" value="Hiking networks ⁿ" />
<name lang="ru" value="Пешеходные сети ⁿ" />
<name lang="es" value="Rutas de senderismo, PR, GR" />
<name lang="de" value="Wandernetzwerke ⁿ" />
<name lang="it" value="Reti escursionistiche ⁿ" />
<name lang="fr" value="Réseaux de randonnée ⁿ" />
<cat id="tms_hknw" />
</layer>
<layer id="tms_mtbnw" enabled="true">
<name lang="en" value="MTB networks ^" />
<name lang="ru" value="MTB-сети ^" />
<name lang="es" value="Rutas BTT" />
<name lang="de" value="MTB-Netzwerke ^" />
<name lang="it" value="reti MTB ^" />
<name lang="fr" value="Réseaux VTT ^" />
<cat id="tms_mtbnw" />
</layer>
<layer id="tms_hknw-mtb" enabled="false">
<name lang="en" value="Hiking networks ^" />
<name lang="ru" value="Пешеходные сети ^" />
<name lang="es" value="Rutas de senderismo, PR, GR" />
<name lang="de" value="Wandernetzwerke ^" />
<name lang="it" value="Reti escursionistiche ^" />
<name lang="fr" value="Réseaux de randonnée ^" />
<cat id="tms_hknw" />
</layer>
<layer id="tms_cynw-mtb" enabled="false">
<name lang="en" value="Cycling networks ^" />
<name lang="ru" value="Велосипедные сети ^" />
<name lang="es" value="Redes ciclistas" />
<name lang="de" value="Fahrradnetzwerke ^" />
<name lang="it" value="Reti ciclistiche ^" />
<name lang="fr" value="Réseaux cyclables ^" />
<cat id="tms_cynw" />
</layer>
<layer id="tms_cynw" enabled="true">
<name lang="en" value="Cycling networks ^" />
<name lang="ru" value="Велосипедные сети ^" />
<name lang="es" value="Redes ciclistas" />
<name lang="de" value="Fahrradnetzwerke ^" />
<name lang="it" value="Reti ciclistiche ^" />
<name lang="fr" value="Réseaux cyclables ^" />
<cat id="tms_cynw" />
</layer>
<layer id="tms_barriers-cy" enabled="true">
<name lang="en" value="Barriers" />
<name lang="ru" value="Барьеры и препятствия" />
<name lang="es" value="Barreras" />
<name lang="de" value="Barrieren" />
<name lang="it" value="Barriere" />
<name lang="fr" value="Barrières" />
<cat id="tms_barriers" />
</layer>
<layer id="tms_barriers-hk" enabled="false">
<name lang="en" value="Barriers" />
<name lang="ru" value="Барьеры и препятствия" />
<name lang="es" value="Barreras" />
<name lang="de" value="Barrieren" />
<name lang="it" value="Barriere" />
<name lang="fr" value="Barrières" />
<cat id="tms_barriers" />
</layer>
<layer id="tms_tracks-cycle" enabled="true">
<name lang="en" value="Easy Tracks ^" />
<name lang="ru" value="Легкие треки ^" />
<name lang="es" value="Pistas ciclables" />
<name lang="de" value="Easy Tracks ^" />
<name lang="it" value="Easy Tracks ^" />
<name lang="fr" value="Easy Tracks ^" />
<cat id="tms_tracks-cycle" />
</layer>
<layer id="tms_trans-priv" enabled="false">
<name lang="en" value="Transportation (private)" />
<name lang="ru" value="Транспорт (частный): парковки, заправки" />
<name lang="es" value="Transporte (privado)" />
<name lang="de" value="Transport (privat)" />
<name lang="it" value="Trasporti (privati)" />
<name lang="fr" value="Transport (privé)" />
<cat id="tms_trans-priv" />
</layer>
<layer id="tms_trans-pub" enabled="false">
<name lang="en" value="Transportation (public)" />
<name lang="ru" value="Транспорт (общественный): станции, остановки автобусные, ж/д, трамвайные, метро" />
<name lang="es" value="Transporte (público)" />
<name lang="de" value="Transport (öffentlich)" />
<name lang="it" value="Trasporti (pubblici)" />
<name lang="fr" value="Transport (public)" />
<cat id="tms_trans-pub" />
</layer>
<layer id="tms_tourism" enabled="true">
<name lang="en" value="Tourism" />
<name lang="ru" value="Туризм, +пещеры, зоопарки" />
<name lang="es" value="Turismo" />
<name lang="de" value="Tourismus" />
<name lang="it" value="Turismo" />
<name lang="fr" value="Tourisme" />
<cat id="tms_tour" />
<cat id="tms_info" />
<cat id="tms_attraction" />
</layer>
<layer id="tms_culture" enabled="false">
<name lang="en" value="Cultural stuff" />
<name lang="ru" value="Культура: Музеи, памятники, монументы, зáмки.." />
<name lang="es" value="Elementos culturales" />
<name lang="de" value="Kulturelles" />
<name lang="it" value="Cose culturali" />
<name lang="fr" value="Eléments culturels" />
<cat id="tms_culture" />
<cat id="tms_schools" />
</layer>
<layer id="tms_freetime" enabled="false">
<name lang="en" value="Free time" />
<name lang="ru" value="Развлечения: Спорт, кино, театры, игр.площадки" />
<name lang="es" value="Ocio" />
<name lang="de" value="Freizeit" />
<name lang="it" value="Tempo libero" />
<name lang="fr" value="Temps libre" />
<cat id="tms_sport" />
<cat id="tms_leisure" />
</layer>
<layer id="tms_food" enabled="false">
<name lang="en" value="Food" />
<name lang="ru" value="Питание: Магазины, супермаркеты, кафе, бары, рестораны" />
<name lang="es" value="Comida" />
<name lang="de" value="Essen" />
<name lang="it" value="Cibo" />
<name lang="fr" value="Nourriture" />
<cat id="tms_food" />
</layer>
<layer id="tms_shops" enabled="false">
<name lang="en" value="Shopping" />
<name lang="ru" value="Почта, банки, терминалы, хоз. и рем.магазины" />
<name lang="es" value="Compras" />
<name lang="de" value="Einkaufen" />
<name lang="it" value="Shopping" />
<name lang="fr" value="Shopping" />
<cat id="tms_shops" />
<cat id="tms_bureaucracy" />
</layer>
<layer id="tms_religion" enabled="false">
<name lang="en" value="Religion" />
<name lang="ru" value="Религия" />
<name lang="es" value="Religión" />
<name lang="de" value="Religion" />
<name lang="it" value="Religione" />
<name lang="fr" value="Religion" />
<cat id="tms_religion" />
</layer>
<layer id="tms_emergency" enabled="false">
<name lang="en" value="Emergency" />
<name lang="ru" value="Экстренные службы, полиция, больницы, аптеки, доктора.." />
<name lang="es" value="Emergencia" />
<name lang="de" value="Notfall" />
<name lang="it" value="Emergenza" />
<name lang="fr" value="Urgence" />
<cat id="tms_emergency" />
</layer>
<layer id="tms_landnames" enabled="true">
<name lang="en" value="Names of places, POIs" />
<name lang="ru" value="Названия мест, POI" />
<name lang="es" value="Toponimia, puntos de interés" />
<name lang="de" value="Ortsnamen, POIs" />
<name lang="it" value="Nomi di luoghi, POI" />
<name lang="fr" value="Noms de lieux, POI" />
<cat id="tms_landnames" />
</layer>
<!-- Base -->
<layer id="tms_base">
<overlay id="tms_terrain"/>
<overlay id="tms_contours"/>
<overlay id="tms_contours-lz"/>
<overlay id="tms_land-ele"/>
<overlay id="tms_landnames"/>
<overlay id="tms_water"/>
<overlay id="tms_huts"/>
<overlay id="tms_picnic"/>
<overlay id="tms_tourism"/>
<overlay id="tms_acco"/>
<overlay id="tms_trans-priv"/>
<overlay id="tms_trans-pub"/>
<overlay id="tms_culture"/>
<overlay id="tms_freetime"/>
<overlay id="tms_food"/>
<overlay id="tms_shops"/>
<overlay id="tms_religion"/>
<overlay id="tms_emergency"/>
</layer>
<!-- Menu -->
<layer id="tms_hiking" parent="tms_base" visible="true">
<name lang="en" value="Hiking"/>
<name lang="ru" value="Пеший туризм" />
<name lang="es" value="Senderismo" />
<name lang="de" value="Wandern"/>
<name lang="it" value="Escursionismo"/>
<cat id="tms_tracks"/>
<cat id="tms_paths"/>
<cat id="tms_hk"/>
<cat id="tms_safety"/>
<overlay id="tms_hknw"/>
<overlay id="tms_barriers-hk"/>
</layer>
<layer id="tms_mtb" parent="tms_base" visible="true">
<name lang="en" value="Mountain biking"/>
<name lang="ru" value="Горный велосипед (MTB)" />
<name lang="es" value="Bicicleta de montaña" />
<name lang="de" value="Mountainbiking"/>
<name lang="it" value="andare in mountain bike"/>
<cat id="tms_tracks"/>
<cat id="tms_paths"/>
<cat id="tms_mtb"/>
<cat id="tms_crossings"/>
<overlay id="tms_mtbnw"/>
<overlay id="tms_hknw-mtb"/>
<overlay id="tms_cynw-mtb"/>
<overlay id="tms_barriers-cy"/>
</layer>
<layer id="tms_velo" parent="tms_base" visible="true">
<name lang="en" value="Velo"/>
<name lang="ru" value="Велосипед" />
<name lang="es" value="Bicicleta" />
<name lang="de" value="Velo"/>
<name lang="it" value="Velo"/>
<cat id="tms_velo"/>
<cat id="tms_crossings"/>
<overlay id="tms_tracks-cycle"/>
<overlay id="tms_cynw"/>
<overlay id="tms_barriers-cy"/>
</layer>
</stylemenu>
<!-- Background -->
<rule cat="tms_terrain" e="way" k="natural" v="sea"> <area fill="#85a7ff" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="nosea"> <area fill="#ffffff" /> </rule>
<!-- landcover -->
<rule cat="tms_terrain" e="way" k="boundary" v="~" zoom-min="11">
<rule e="way" k="leisure" v="park" closed="yes">
<area fill="#BBC7F1A3" />
</rule>
</rule>
<rule cat="tms_terrain" e="way" k="landuse" v="residential" zoom-min="9" zoom-max="12"> <area fill="#BB808080" stroke="#D4D4D4" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="residential|farmyard" zoom-min="13" zoom-max="15"> <area fill="#BBA9A9A9" /></rule>
<rule cat="tms_terrain" e="way" k="landuse" v="residential|farmyard" zoom-min="16"> <area fill="#BBCCCCCC" /> </rule>
<rule cat="tms_terrain" e="way" k="amenity" v="hospital"><area fill="#F2D9D7" stroke="#DBBDBA" stroke-width="0.2" /></rule>
<!-- leisure areas -->
<rule cat="tms_terrain" e="way" k="amenity|tourism|historic" v="kindergarten|school|college|university|place_of_worship|biergarten|museum|ruins|castle|memorial|monument"> <area fill="#E3D7C3" stroke="#B3A99A" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="leisure|sport" v="sports_centre|shooting"> <area fill="#DDBDE3CB" stroke="#6FC18E" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="leisure" v="swimming_pool">
<area fill="#B5D6F1" stroke="#666666" stroke-width="0.3" />
<line stroke="#AAAAAA" stroke-width="0.3" stroke-dasharray="3,3" stroke-linecap="butt"/>
</rule>
<rule cat="tms_terrain" e="way" k="sport|leisure" v="swimming|water_park" zoom-min="13">
<area fill="#6892ff" stroke="#6060FF" stroke-width="0.3" />
</rule>
<rule cat="tms_terrain" e="way" k="leisure" v="swimming_area|beach_resort" zoom-min="13">
<area fill="#806892ff" stroke="#6060FF" stroke-width="0.25" />
</rule>
<rule cat="tms_terrain" e="way" k="leisure" v="stadium"> <area fill="#DD86D9A5" stroke="#6FC18E" stroke-width="0.2" /> </rule>
<!-- end leisure areas -->
<!-- vegetation -->
<rule cat="tms_terrain" e="way" k="natural|landuse" v="forest|wood" zoom-min="12" zoom-max="12"> <area fill="#bee0b1" /> </rule>
<rule cat="tms_terrain" e="way" k="natural|landuse" v="forest|wood">
<rule e="any" k="wood|leaf_type" v="coniferous|needleleaved" zoom-min="13" zoom-max="13"> <area src="file:/res/p_wood-coniferous.svg" symbol-width="060" /> </rule>
<rule e="any" k="wood|leaf_type" v="coniferous|needleleaved" zoom-min="14" zoom-max="14"> <area src="file:/res/p_wood-coniferous.svg" symbol-width="080" /> </rule>
<rule e="any" k="wood|leaf_type" v="coniferous|needleleaved" zoom-min="15" zoom-max="15"> <area src="file:/res/p_wood-coniferous.svg" symbol-width="100" /> </rule>
<rule e="any" k="wood|leaf_type" v="coniferous|needleleaved" zoom-min="16" zoom-max="16"> <area src="file:/res/p_wood-coniferous.svg" symbol-width="120" /> </rule>
<rule e="any" k="wood|leaf_type" v="coniferous|needleleaved" zoom-min="17" zoom-max="17"> <area src="file:/res/p_wood-coniferous.svg" symbol-width="140" /> </rule>
<rule e="any" k="wood|leaf_type" v="coniferous|needleleaved" zoom-min="18" zoom-max="99"> <area src="file:/res/p_wood-coniferous.svg" symbol-width="160" /> </rule>
<rule e="any" k="wood|leaf_type" v="deciduous|broadleaved" zoom-min="13" zoom-max="13"> <area src="file:/res/p_wood-deciduous.svg" symbol-width="060" /> </rule>
<rule e="any" k="wood|leaf_type" v="deciduous|broadleaved" zoom-min="14" zoom-max="14"> <area src="file:/res/p_wood-deciduous.svg" symbol-width="080" /> </rule>
<rule e="any" k="wood|leaf_type" v="deciduous|broadleaved" zoom-min="15" zoom-max="15"> <area src="file:/res/p_wood-deciduous.svg" symbol-width="100" /> </rule>
<rule e="any" k="wood|leaf_type" v="deciduous|broadleaved" zoom-min="16" zoom-max="16"> <area src="file:/res/p_wood-deciduous.svg" symbol-width="120" /> </rule>
<rule e="any" k="wood|leaf_type" v="deciduous|broadleaved" zoom-min="17" zoom-max="17"> <area src="file:/res/p_wood-deciduous.svg" symbol-width="140" /> </rule>
<rule e="any" k="wood|leaf_type" v="deciduous|broadleaved" zoom-min="18" zoom-max="99"> <area src="file:/res/p_wood-deciduous.svg" symbol-width="160" /> </rule>
<rule e="any" k="wood|leaf_type" v="~|mixed|leafless" zoom-min="13" zoom-max="13"> <area src="file:/res/p_wood-mixed.svg" symbol-width="060" /> </rule>
<rule e="any" k="wood|leaf_type" v="~|mixed|leafless" zoom-min="14" zoom-max="14"> <area src="file:/res/p_wood-mixed.svg" symbol-width="080" /> </rule>
<rule e="any" k="wood|leaf_type" v="~|mixed|leafless" zoom-min="15" zoom-max="15"> <area src="file:/res/p_wood-mixed.svg" symbol-width="100" /> </rule>
<rule e="any" k="wood|leaf_type" v="~|mixed|leafless" zoom-min="16" zoom-max="16"> <area src="file:/res/p_wood-mixed.svg" symbol-width="120" /> </rule>
<rule e="any" k="wood|leaf_type" v="~|mixed|leafless" zoom-min="17" zoom-max="17"> <area src="file:/res/p_wood-mixed.svg" symbol-width="140" /> </rule>
<rule e="any" k="wood|leaf_type" v="~|mixed|leafless" zoom-min="18" zoom-max="99"> <area src="file:/res/p_wood-mixed.svg" symbol-width="160" /> </rule>
<rule e="any" k="wood|leaf_type" v="coniferous|needleleaved" zoom-min="13" ><area fill="#28125f16" /></rule>
<rule e="any" k="wood|leaf_type" v="deciduous|broadleaved" zoom-min="13" ><area fill="#289fdd0d" /></rule>
</rule>
<rule cat="tms_terrain" e="way" k="natural" v="scrub" zoom-min="13" zoom-max="13"> <area src="file:/res/p_scrub.svg" symbol-width="25" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scrub" zoom-min="14" zoom-max="14"> <area src="file:/res/p_scrub.svg" symbol-width="35" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scrub" zoom-min="15" zoom-max="15"> <area src="file:/res/p_scrub.svg" symbol-width="45" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scrub" zoom-min="16" zoom-max="16"> <area src="file:/res/p_scrub.svg" symbol-width="55" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scrub" zoom-min="17" zoom-max="17"> <area src="file:/res/p_scrub.svg" symbol-width="70" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scrub" zoom-min="18" zoom-max="99"> <area src="file:/res/p_scrub.svg" symbol-width="90" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="heath" zoom-min="13" zoom-max="13"> <area src="file:/res/p_heat.svg" symbol-width="20" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="heath" zoom-min="14" zoom-max="14"> <area src="file:/res/p_heat.svg" symbol-width="30" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="heath" zoom-min="15" zoom-max="15"> <area src="file:/res/p_heat.svg" symbol-width="40" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="heath" zoom-min="16" zoom-max="99"> <area src="file:/res/p_heat.svg" symbol-width="50" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="fell" zoom-min="13" zoom-max="13"> <area src="file:/res/p_fell.svg" symbol-width="015" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="fell" zoom-min="14" zoom-max="14"> <area src="file:/res/p_fell.svg" symbol-width="025" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="fell" zoom-min="15" zoom-max="15"> <area src="file:/res/p_fell.svg" symbol-width="035" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="fell" zoom-min="16" zoom-max="16"> <area src="file:/res/p_fell.svg" symbol-width="050" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="fell" zoom-min="17" zoom-max="17"> <area src="file:/res/p_fell.svg" symbol-width="070" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="fell" zoom-min="18" zoom-max="99"> <area src="file:/res/p_fell.svg" symbol-width="090" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse|natural" v="field|farm|farmland" zoom-min="13" zoom-max="13"> <area src="file:/res/p_farmland.svg" symbol-width="050" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse|natural" v="field|farm|farmland" zoom-min="14" zoom-max="14"> <area src="file:/res/p_farmland.svg" symbol-width="080" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse|natural" v="field|farm|farmland" zoom-min="15" zoom-max="15"> <area src="file:/res/p_farmland.svg" symbol-width="110" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse|natural" v="field|farm|farmland" zoom-min="16" zoom-max="16"> <area src="file:/res/p_farmland.svg" symbol-width="150" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse|natural" v="field|farm|farmland" zoom-min="17" zoom-max="17"> <area src="file:/res/p_farmland.svg" symbol-width="190" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse|natural" v="field|farm|farmland" zoom-min="18" zoom-max="99"> <area src="file:/res/p_farmland.svg" symbol-width="240" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="marsh|wetland" zoom-min="13" zoom-max="13"> <area src="file:/res/p_marsh.svg" symbol-width="25" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="marsh|wetland" zoom-min="14" zoom-max="14"> <area src="file:/res/p_marsh.svg" symbol-width="35" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="marsh|wetland" zoom-min="15" zoom-max="15"> <area src="file:/res/p_marsh.svg" symbol-width="47" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="marsh|wetland" zoom-min="16" zoom-max="99"> <area src="file:/res/p_marsh.svg" symbol-width="60" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="orchard" zoom-min="13" zoom-max="13"><area src="file:/res/p_orchard.svg" stroke="#E4E4E4" stroke-width="0.2" symbol-width="20" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="orchard" zoom-min="14" zoom-max="14"><area src="file:/res/p_orchard.svg" stroke="#E4E4E4" stroke-width="0.2" symbol-width="30" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="orchard" zoom-min="15" zoom-max="15"><area src="file:/res/p_orchard.svg" stroke="#E4E4E4" stroke-width="0.2" symbol-width="40" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="orchard" zoom-min="16" zoom-max="99"><area src="file:/res/p_orchard.svg" stroke="#E4E4E4" stroke-width="0.2" symbol-width="50" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="vineyard" zoom-min="13" zoom-max="13"><area src="file:/res/p_vineyard.svg" stroke="#E4E4E4" stroke-width="0.2" symbol-width="20" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="vineyard" zoom-min="14" zoom-max="14"><area src="file:/res/p_vineyard.svg" stroke="#E4E4E4" stroke-width="0.2" symbol-width="30" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="vineyard" zoom-min="15" zoom-max="15"><area src="file:/res/p_vineyard.svg" stroke="#E4E4E4" stroke-width="0.2" symbol-width="40" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="vineyard" zoom-min="16" zoom-max="99"><area src="file:/res/p_vineyard.svg" stroke="#E4E4E4" stroke-width="0.2" symbol-width="50" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse|natural" v="meadow|grass|grassland" zoom-min="13"> <area src="file:/res/p_grass.svg" symbol-width="100" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="glacier" zoom-min="12"> <area fill="#BBE0FFFF" stroke="#E0FFFF" stroke-width="0.8" /> </rule>
<!-- Bare ground -->
<rule cat="tms_terrain" e="way" k="natural" v="rock|stone|bare_rock|bedrock" zoom-min="13" zoom-max="13"> <area src="file:/res/p_rock2.svg" symbol-width="060" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="rock|stone|bare_rock|bedrock" zoom-min="14" zoom-max="14"> <area src="file:/res/p_rock2.svg" symbol-width="090" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="rock|stone|bare_rock|bedrock" zoom-min="15" zoom-max="15"> <area src="file:/res/p_rock2.svg" symbol-width="130" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="rock|stone|bare_rock|bedrock" zoom-min="16" zoom-max="99"> <area src="file:/res/p_rock2.svg" symbol-width="170" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scree" zoom-min="13" zoom-max="13"> <area src="file:/res/p_scree.svg" symbol-width="015" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scree" zoom-min="14" zoom-max="14"> <area src="file:/res/p_scree.svg" symbol-width="025" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scree" zoom-min="15" zoom-max="15"> <area src="file:/res/p_scree.svg" symbol-width="035" /> </rule>
<rule cat="tms_terrain" e="way" k="natural" v="scree" zoom-min="16" zoom-max="99"> <area src="file:/res/p_scree.svg" symbol-width="050" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="landfill|quarry">
<rule e="way" k="*" v="*" zoom-min="13" zoom-max="13"> <area src="file:/res/p_quarry.svg" symbol-width="015" /> </rule>
<rule e="way" k="*" v="*" zoom-min="14" zoom-max="14"> <area src="file:/res/p_quarry.svg" symbol-width="025" /> </rule>
<rule e="way" k="*" v="*" zoom-min="15" zoom-max="15"> <area src="file:/res/p_quarry.svg" symbol-width="035" /> </rule>
<rule e="way" k="*" v="*" zoom-min="16" zoom-max="99"> <area src="file:/res/p_quarry.svg" symbol-width="050" /> </rule>
<area stroke="#9EA199" stroke-width="0.2" />
</rule>
<rule cat="tms_terrain" e="way" k="landuse|natural" v="beach|sand" zoom-min="11"> <area fill="#BFFAEBB9" /> </rule>
<!-- Misc land use -->
<rule cat="tms_terrain" e="way" k="landuse" v="retail|commercial|industrial|brownfield|railway|garages|construction" zoom-min="13"> <area fill="#BBC9DDDD" /> </rule>
<rule cat="tms_terrain" e="way" k="leisure" v="garden|golf_course|common" zoom-min="13"> <area fill="#BBC7F1A3" stroke="#806FC18E" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="allotments|village_green|recreation_ground|greenfield" zoom-min="13"> <area fill="#BBBDE3CB" stroke="#6FC13D" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse|amenity" v="cemetery|grave_yard" zoom-min="11">
<area fill="#adc4b6" stroke="#333333" stroke-width="0.3" />
<rule e="way" k="*" v="*" zoom-min="15">
<symbol id="s_cemetery" src="file:/res/s_cemetery.svg" symbol-width="16" />
<caption cat="tms_landnames" symbol-id="s_cemetery" position="below" k="name" font-style="bold_italic" font-family="serif" font-size="10" fill="#444444" stroke="#FFFFFF" stroke-width="2.0" text-wrap-width="120" />
</rule>
</rule>
<rule cat="tms_terrain" e="way" k="landuse" v="military" zoom-min="11" zoom-max="11"> <area src="file:/res/p_military.svg" symbol-width="20" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="military" zoom-min="12" zoom-max="12"> <area src="file:/res/p_military.svg" symbol-width="30" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="military" zoom-min="13" zoom-max="13"> <area src="file:/res/p_military.svg" symbol-width="40" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="military" zoom-min="14" zoom-max="15"> <area src="file:/res/p_military.svg" symbol-width="55" /> </rule>
<rule cat="tms_terrain" e="way" k="landuse" v="military" zoom-min="16" zoom-max="99"> <area src="file:/res/p_military.svg" symbol-width="75" /> </rule>
<rule cat="tms_terrain" e="way" k="military" v="*" zoom-min="11" zoom-max="11"> <area src="file:/res/p_military.svg" symbol-width="20" /> </rule>
<rule cat="tms_terrain" e="way" k="military" v="*" zoom-min="12" zoom-max="12"> <area src="file:/res/p_military.svg" symbol-width="30" /> </rule>
<rule cat="tms_terrain" e="way" k="military" v="*" zoom-min="13" zoom-max="13"> <area src="file:/res/p_military.svg" symbol-width="40" /> </rule>
<rule cat="tms_terrain" e="way" k="military" v="*" zoom-min="14" zoom-max="15"> <area src="file:/res/p_military.svg" symbol-width="55" /> </rule>
<rule cat="tms_terrain" e="way" k="military" v="*" zoom-min="16" zoom-max="99"> <area src="file:/res/p_military.svg" symbol-width="75" /> </rule>
<!-- Area names -->
<rule cat="tms_terrain" e="way" k="natural|landuse" v="land|beach|sand|rock|fell|meadow|grassland|heath|marsh|wetland|scree|scrub|landfill|quarry|vineyard|field|farm|farmland" zoom-min="13">
<caption cat="tms_landnames" k="name" font-style="italic" font-family="serif" font-size="11" fill="#444444" stroke="#FFFFFF" stroke-width="2" />
</rule>
<rule cat="tms_terrain" e="way" k="landuse|leisure" v="village_green|recreation_ground|grass|military|park|garden|common|green|dog_park" zoom-min="15">
<caption cat="tms_landnames" k="name" font-style="italic" font-family="serif" font-size="10" fill="#444444" stroke="#FFFFFF" stroke-width="2" />
</rule>
<rule cat="tms_terrain" e="way" k="natural" v="tree_row">
<line stroke="#90679632" stroke-width="1.2" stroke-linecap="round"/>
</rule>
<rule cat="tms_terrain" e="way" k="barrier" v="hedge" zoom-min="15">
<line stroke="#A5CBA5" stroke-width="0.52" stroke-linecap="round" />
<line stroke="#CBE1CB" stroke-width="0.46" scale="all" stroke-dasharray="0.2,0.5" stroke-linecap="butt" />
</rule>
<!-- Contour lines -->
<rule cat="tms_contours-lz" e="way" k="contour_ext" v="elevation_minor" zoom-min="01" zoom-max="12"><line stroke="#80766C" stroke-width="0.12" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_minor" zoom-min="13" zoom-max="13"><line stroke="#80766C" stroke-width="0.12" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_minor" zoom-min="14" zoom-max="14"><line stroke="#80766C" stroke-width="0.12" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_minor" zoom-min="15" zoom-max="15"><line stroke="#80766C" stroke-width="0.10" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_minor" zoom-min="16" zoom-max="16"><line stroke="#80766C" stroke-width="0.08" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_minor" zoom-min="17" zoom-max="17"><line stroke="#80766C" stroke-width="0.06" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_minor" zoom-min="18" zoom-max="18"><line stroke="#80766C" stroke-width="0.05" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_minor" zoom-min="19" zoom-max="19"><line stroke="#80766C" stroke-width="0.04" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_minor" zoom-min="20" zoom-max="99"><line stroke="#80766C" stroke-width="0.03" curve="cubic" /></rule>
<rule cat="tms_contours-lz" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="01" zoom-max="11"><line stroke="#80766C" stroke-width="0.32" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="12" zoom-max="12"><line stroke="#80766C" stroke-width="0.32" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="13" zoom-max="13"><line stroke="#80766C" stroke-width="0.32" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="14" zoom-max="14"><line stroke="#80766C" stroke-width="0.32" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="15" zoom-max="15"><line stroke="#80766C" stroke-width="0.27" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="16" zoom-max="16"><line stroke="#80766C" stroke-width="0.22" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="17" zoom-max="17"><line stroke="#80766C" stroke-width="0.17" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="18" zoom-max="18"><line stroke="#80766C" stroke-width="0.13" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="19" zoom-max="19"><line stroke="#80766C" stroke-width="0.10" curve="cubic" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="20" zoom-max="99"><line stroke="#80766C" stroke-width="0.07" curve="cubic" /></rule>
<rule cat="tms_contours-lz" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-max="12"><pathText priority="-50" k="ele" font-family="sans_serif" font-style="normal" font-size="8" fill="#80766C" stroke="#aaFFFFFF" stroke-width="2.0" text-orientation="left" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="13" zoom-max="14"><pathText priority="-50" k="ele" font-family="sans_serif" font-style="normal" font-size="8" fill="#80766C" stroke="#aaFFFFFF" stroke-width="2.0" text-orientation="left" /></rule>
<rule cat="tms_contours" e="way" k="contour_ext" v="elevation_medium|elevation_major" zoom-min="15" zoom-max="99"><pathText priority="-50" k="ele" font-family="sans_serif" font-style="normal" font-size="9" fill="#80766C" stroke="#aaFFFFFF" stroke-width="2.0" text-orientation="left" /></rule>
<!-- natural reserve -->
<!-- protected, aboriginal areas -->
<rule cat="tms_terrain" e="way" k="*" v="*">
<rule e="way" k="boundary" v="aboriginal_lands" >
<area fill="#1dff8000" />
<rule e="way" k="*" v="*" zoom-min="8" zoom-max="13">
<line stroke="#FFAF0B" stroke-width="1.2" stroke-linecap="butt" />
</rule>
<rule e="way" k="*" v="*" zoom-min="14">
<line stroke="#99A5C085" stroke-width="2" dy="-2" stroke-linecap="butt" />
<line stroke="#99C7D2AC" stroke-width="2" stroke-linecap="butt" />
</rule>
</rule>
<rule e="way" k="leisure|boundary" v="nature_reserve|protected_area|national_park" >
<rule e="any" k="*" v="*" zoom-max="12">
<area fill="#50f7ff6f" />
</rule>
<rule e="any" k="*" v="*" zoom-min="13" zoom-max="14">
<area fill="#20f7ff6f" />
</rule>
</rule>
</rule>
<!-- natural ways -->
<rule cat="tms_relief" e="way" k="natural" v="gorge" closed="no" zoom-min="12">
<rule e="way" k="*" v="*" zoom-max="13" >
<line stroke="#80606060" stroke-width="0.2"/>
</rule>
<rule e="way" k="*" v="*" zoom-min="14">
<line src="file:/res/p_rock2.svg" stroke-width="1.9"/>
<line stroke="#AA606060" stroke-width="1.6" scale="all" stroke-dasharray="0.1,0.3" stroke-linecap="butt"/>
<rule cat="tms_landnames" e="way" k="*" v="*" zoom-min="16">
<pathText k="name" font-style="bold_italic" font-family="serif" font-size="11" fill="#666666" stroke="#FFFFFF" stroke-width="3" dy="-1.1"/>
</rule>
</rule>
</rule>
<!-- tunnels -->
<!-- zoom 12- -->
<rule e="way" k="tunnel" v="true|yes">
<rule e="way" k="*" v="*" zoom-max="12">
<rule e="way" k="railway" v="rail|narrow_gauge|preserved"> <line stroke="#AA333333" stroke-width="1.3" stroke-dasharray="4,4" stroke-linecap="butt" /> </rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link|secondary|primary|trunk">
<line stroke="#A0000000" stroke-width="2.3" stroke-dasharray="5,5" stroke-linecap="butt" />
<line stroke="#DDFFFFFF" stroke-width="1.3" stroke-dasharray="5,5" stroke-linecap="butt" />
</rule>
<rule e="way" k="highway" v="motorway">
<line stroke="#A0000000" stroke-width="2.9" stroke-dasharray="5,5" stroke-linecap="butt" />
<line stroke="#DDFFFFFF" stroke-width="1.3" stroke-dasharray="5,5" stroke-linecap="butt" />
</rule>
</rule>
<!-- railway tunnel -->
<rule e="way" k="railway" v="rail|narrow_gauge|preserved|funicular" zoom-min="13" zoom-max="13"><line stroke="#555555" stroke-width="0.68" stroke-dasharray="04.00,03.00" stroke-linecap="butt" /></rule>
<rule e="way" k="railway" v="rail|narrow_gauge|preserved|funicular" zoom-min="14" zoom-max="14"><line stroke="#555555" stroke-width="0.67" stroke-dasharray="05.66,04.24" stroke-linecap="butt" /></rule>
<rule e="way" k="railway" v="rail|narrow_gauge|preserved|funicular" zoom-min="15" zoom-max="15"><line stroke="#555555" stroke-width="0.58" stroke-dasharray="06.93,05.20" stroke-linecap="butt" /></rule>
<rule e="way" k="railway" v="rail|narrow_gauge|preserved|funicular" zoom-min="16" zoom-max="16"><line stroke="#555555" stroke-width="0.47" stroke-dasharray="08.00,06.00" stroke-linecap="butt" /></rule>
<rule e="way" k="railway" v="rail|narrow_gauge|preserved|funicular" zoom-min="17" zoom-max="17"><line stroke="#555555" stroke-width="0.37" stroke-dasharray="08.94,06.71" stroke-linecap="butt" /></rule>
<rule e="way" k="railway" v="rail|narrow_gauge|preserved|funicular" zoom-min="18" zoom-max="18"><line stroke="#555555" stroke-width="0.28" stroke-dasharray="09.80,07.35" stroke-linecap="butt" /></rule>
<rule e="way" k="railway" v="rail|narrow_gauge|preserved|funicular" zoom-min="19" zoom-max="19"><line stroke="#555555" stroke-width="0.21" stroke-dasharray="10.58,07.94" stroke-linecap="butt" /></rule>
<rule e="way" k="railway" v="rail|narrow_gauge|preserved|funicular" zoom-min="20" zoom-max="99"><line stroke="#555555" stroke-width="0.16" stroke-dasharray="11.31,08.49" stroke-linecap="butt" /></rule>
<!-- highway tunnel casings -->
<rule e="way" k="highway" v="cycleway" zoom-min="13" zoom-max="13"><line stroke="#222222" stroke-width="1.98" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="14" zoom-max="14"><line stroke="#222222" stroke-width="1.96" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="15" zoom-max="15"><line stroke="#222222" stroke-width="1.68" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="16" zoom-max="16"><line stroke="#222222" stroke-width="1.36" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="17" zoom-max="17"><line stroke="#222222" stroke-width="1.06" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="18" zoom-max="18"><line stroke="#222222" stroke-width="0.82" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="19" zoom-max="19"><line stroke="#222222" stroke-width="0.62" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="20" zoom-max="99"><line stroke="#222222" stroke-width="0.46" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="13" zoom-max="13"><line stroke="#222222" stroke-width="1.98" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="14" zoom-max="14"><line stroke="#222222" stroke-width="1.96" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="15" zoom-max="15"><line stroke="#222222" stroke-width="1.68" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="16" zoom-max="16"><line stroke="#222222" stroke-width="1.36" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="17" zoom-max="17"><line stroke="#222222" stroke-width="1.06" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="18" zoom-max="18"><line stroke="#222222" stroke-width="0.82" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="19" zoom-max="19"><line stroke="#222222" stroke-width="0.62" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="20" zoom-max="99"><line stroke="#222222" stroke-width="0.46" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="13" zoom-max="13"><line stroke="#222222" stroke-width="2.18" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="14" zoom-max="14"><line stroke="#222222" stroke-width="2.16" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="15" zoom-max="15"><line stroke="#222222" stroke-width="1.85" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="16" zoom-max="16"><line stroke="#222222" stroke-width="1.49" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="17" zoom-max="17"><line stroke="#222222" stroke-width="1.17" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="18" zoom-max="18"><line stroke="#222222" stroke-width="0.90" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="19" zoom-max="19"><line stroke="#222222" stroke-width="0.68" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="20" zoom-max="99"><line stroke="#222222" stroke-width="0.51" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="13" zoom-max="13"><line stroke="#222222" stroke-width="2.40" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="14" zoom-max="14"><line stroke="#222222" stroke-width="2.37" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="15" zoom-max="15"><line stroke="#222222" stroke-width="2.03" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="16" zoom-max="16"><line stroke="#222222" stroke-width="1.64" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="17" zoom-max="17"><line stroke="#222222" stroke-width="1.29" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="18" zoom-max="18"><line stroke="#222222" stroke-width="0.99" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="19" zoom-max="19"><line stroke="#222222" stroke-width="0.75" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="20" zoom-max="99"><line stroke="#222222" stroke-width="0.56" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="13" zoom-max="13"><line stroke="#222222" stroke-width="2.59" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="14" zoom-max="14"><line stroke="#222222" stroke-width="2.56" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="15" zoom-max="15"><line stroke="#222222" stroke-width="2.20" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="16" zoom-max="16"><line stroke="#222222" stroke-width="1.78" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="17" zoom-max="17"><line stroke="#222222" stroke-width="1.39" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="18" zoom-max="18"><line stroke="#222222" stroke-width="1.07" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="19" zoom-max="19"><line stroke="#222222" stroke-width="0.81" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="20" zoom-max="99"><line stroke="#222222" stroke-width="0.60" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="13" zoom-max="13"><line stroke="#222222" stroke-width="2.98" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="14" zoom-max="14"><line stroke="#222222" stroke-width="2.95" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="15" zoom-max="15"><line stroke="#222222" stroke-width="2.53" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="16" zoom-max="16"><line stroke="#222222" stroke-width="2.04" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="17" zoom-max="17"><line stroke="#222222" stroke-width="1.60" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="18" zoom-max="18"><line stroke="#222222" stroke-width="1.23" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="19" zoom-max="19"><line stroke="#222222" stroke-width="0.93" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="20" zoom-max="99"><line stroke="#222222" stroke-width="0.69" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="13" zoom-max="13"><line stroke="#222222" stroke-width="3.27" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="14" zoom-max="14"><line stroke="#222222" stroke-width="3.24" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="15" zoom-max="15"><line stroke="#222222" stroke-width="2.78" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="16" zoom-max="16"><line stroke="#222222" stroke-width="2.25" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="17" zoom-max="17"><line stroke="#222222" stroke-width="1.76" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="18" zoom-max="18"><line stroke="#222222" stroke-width="1.35" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="19" zoom-max="19"><line stroke="#222222" stroke-width="1.02" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="20" zoom-max="99"><line stroke="#222222" stroke-width="0.76" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<!-- highway tunnel cores -->
<rule cat="tms_paths" e="way" k="highway" v="path" zoom-min="13" zoom-max="13"><line stroke="#888888" stroke-width="0.85" stroke-dasharray="04.00,03.00" stroke-linecap="butt" /></rule>
<rule cat="tms_paths" e="way" k="highway" v="path" zoom-min="14" zoom-max="14"><line stroke="#888888" stroke-width="0.84" stroke-dasharray="05.66,04.24" stroke-linecap="butt" /></rule>
<rule cat="tms_paths" e="way" k="highway" v="path" zoom-min="15" zoom-max="15"><line stroke="#888888" stroke-width="0.72" stroke-dasharray="06.93,05.20" stroke-linecap="butt" /></rule>
<rule cat="tms_paths" e="way" k="highway" v="path" zoom-min="16" zoom-max="16"><line stroke="#888888" stroke-width="0.58" stroke-dasharray="08.00,06.00" stroke-linecap="butt" /></rule>
<rule cat="tms_paths" e="way" k="highway" v="path" zoom-min="17" zoom-max="17"><line stroke="#888888" stroke-width="0.46" stroke-dasharray="08.94,06.71" stroke-linecap="butt" /></rule>
<rule cat="tms_paths" e="way" k="highway" v="path" zoom-min="18" zoom-max="18"><line stroke="#888888" stroke-width="0.35" stroke-dasharray="09.80,07.35" stroke-linecap="butt" /></rule>
<rule cat="tms_paths" e="way" k="highway" v="path" zoom-min="19" zoom-max="19"><line stroke="#888888" stroke-width="0.26" stroke-dasharray="10.58,07.94" stroke-linecap="butt" /></rule>
<rule cat="tms_paths" e="way" k="highway" v="path" zoom-min="20" zoom-max="99"><line stroke="#888888" stroke-width="0.20" stroke-dasharray="11.31,08.49" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="footway" zoom-min="13" zoom-max="13"><line stroke="#888888" stroke-width="0.85" stroke-dasharray="04.00,03.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="footway" zoom-min="14" zoom-max="14"><line stroke="#888888" stroke-width="0.84" stroke-dasharray="05.66,04.24" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="footway" zoom-min="15" zoom-max="15"><line stroke="#888888" stroke-width="0.72" stroke-dasharray="06.93,05.20" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="footway" zoom-min="16" zoom-max="16"><line stroke="#888888" stroke-width="0.58" stroke-dasharray="08.00,06.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="footway" zoom-min="17" zoom-max="17"><line stroke="#888888" stroke-width="0.46" stroke-dasharray="08.94,06.71" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="footway" zoom-min="18" zoom-max="18"><line stroke="#888888" stroke-width="0.35" stroke-dasharray="09.80,07.35" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="footway" zoom-min="19" zoom-max="19"><line stroke="#888888" stroke-width="0.26" stroke-dasharray="10.58,07.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="footway" zoom-min="20" zoom-max="99"><line stroke="#888888" stroke-width="0.20" stroke-dasharray="11.31,08.49" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="13" zoom-max="13"><line stroke="#F8F8F8" stroke-width="1.39" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="14" zoom-max="14"><line stroke="#F8F8F8" stroke-width="1.37" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="15" zoom-max="15"><line stroke="#F8F8F8" stroke-width="1.18" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="16" zoom-max="16"><line stroke="#F8F8F8" stroke-width="0.95" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="17" zoom-max="17"><line stroke="#F8F8F8" stroke-width="0.74" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="18" zoom-max="18"><line stroke="#F8F8F8" stroke-width="0.57" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="19" zoom-max="19"><line stroke="#F8F8F8" stroke-width="0.43" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="cycleway" zoom-min="20" zoom-max="99"><line stroke="#F8F8F8" stroke-width="0.32" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="13" zoom-max="13"><line stroke="#F8F8F8" stroke-width="1.39" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="14" zoom-max="14"><line stroke="#F8F8F8" stroke-width="1.37" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="15" zoom-max="15"><line stroke="#F8F8F8" stroke-width="1.18" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="16" zoom-max="16"><line stroke="#F8F8F8" stroke-width="0.95" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="17" zoom-max="17"><line stroke="#F8F8F8" stroke-width="0.74" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="18" zoom-max="18"><line stroke="#F8F8F8" stroke-width="0.57" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="19" zoom-max="19"><line stroke="#F8F8F8" stroke-width="0.43" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule cat="tms_tracks" e="way" k="highway" v="bridleway|track" zoom-min="20" zoom-max="99"><line stroke="#F8F8F8" stroke-width="0.32" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="13" zoom-max="13"><line stroke="#F8F8F8" stroke-width="1.52" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="14" zoom-max="14"><line stroke="#F8F8F8" stroke-width="1.51" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="15" zoom-max="15"><line stroke="#F8F8F8" stroke-width="1.29" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="16" zoom-max="16"><line stroke="#F8F8F8" stroke-width="1.05" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="17" zoom-max="17"><line stroke="#F8F8F8" stroke-width="0.82" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="18" zoom-max="18"><line stroke="#F8F8F8" stroke-width="0.63" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="19" zoom-max="19"><line stroke="#F8F8F8" stroke-width="0.47" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="byway|road|pedestrian|unclassified|residential|living_street|service" zoom-min="20" zoom-max="99"><line stroke="#F8F8F8" stroke-width="0.36" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="13" zoom-max="13"><line stroke="#F8F8F8" stroke-width="1.68" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="14" zoom-max="14"><line stroke="#F8F8F8" stroke-width="1.66" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="15" zoom-max="15"><line stroke="#F8F8F8" stroke-width="1.42" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="16" zoom-max="16"><line stroke="#F8F8F8" stroke-width="1.15" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="17" zoom-max="17"><line stroke="#F8F8F8" stroke-width="0.90" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="18" zoom-max="18"><line stroke="#F8F8F8" stroke-width="0.69" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="19" zoom-max="19"><line stroke="#F8F8F8" stroke-width="0.52" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="tertiary|secondary_link|primary_link|trunk_link|motorway_link" zoom-min="20" zoom-max="99"><line stroke="#F8F8F8" stroke-width="0.39" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="13" zoom-max="13"><line stroke="#F8F8F8" stroke-width="1.81" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="14" zoom-max="14"><line stroke="#F8F8F8" stroke-width="1.79" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="15" zoom-max="15"><line stroke="#F8F8F8" stroke-width="1.54" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="16" zoom-max="16"><line stroke="#F8F8F8" stroke-width="1.24" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="17" zoom-max="17"><line stroke="#F8F8F8" stroke-width="0.97" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="18" zoom-max="18"><line stroke="#F8F8F8" stroke-width="0.75" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="19" zoom-max="19"><line stroke="#F8F8F8" stroke-width="0.56" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="secondary" zoom-min="20" zoom-max="99"><line stroke="#F8F8F8" stroke-width="0.42" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="13" zoom-max="13"><line stroke="#F8F8F8" stroke-width="2.08" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="14" zoom-max="14"><line stroke="#F8F8F8" stroke-width="2.06" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="15" zoom-max="15"><line stroke="#F8F8F8" stroke-width="1.77" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="16" zoom-max="16"><line stroke="#F8F8F8" stroke-width="1.43" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="17" zoom-max="17"><line stroke="#F8F8F8" stroke-width="1.12" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="18" zoom-max="18"><line stroke="#F8F8F8" stroke-width="0.86" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="19" zoom-max="19"><line stroke="#F8F8F8" stroke-width="0.65" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="primary" zoom-min="20" zoom-max="99"><line stroke="#F8F8F8" stroke-width="0.49" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="13" zoom-max="13"><line stroke="#F8F8F8" stroke-width="2.29" stroke-dasharray="06.00,04.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="14" zoom-max="14"><line stroke="#F8F8F8" stroke-width="2.27" stroke-dasharray="08.49,05.66" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="15" zoom-max="15"><line stroke="#F8F8F8" stroke-width="1.94" stroke-dasharray="10.39,06.93" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="16" zoom-max="16"><line stroke="#F8F8F8" stroke-width="1.57" stroke-dasharray="12.00,08.00" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="17" zoom-max="17"><line stroke="#F8F8F8" stroke-width="1.23" stroke-dasharray="13.42,08.94" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="18" zoom-max="18"><line stroke="#F8F8F8" stroke-width="0.94" stroke-dasharray="14.70,09.80" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="19" zoom-max="19"><line stroke="#F8F8F8" stroke-width="0.71" stroke-dasharray="15.87,10.58" stroke-linecap="butt" /></rule>
<rule e="way" k="highway" v="trunk|motorway" zoom-min="20" zoom-max="99"><line stroke="#F8F8F8" stroke-width="0.53" stroke-dasharray="16.97,11.31" stroke-linecap="butt" /></rule>
</rule>
<!-- waterways -->
<rule cat="tms_terrain" e="way" k="tunnel" v="~|no">
<rule e="way" k="location" v="~|overground">
<rule e="way" k="waterway" v="ditch">
<line stroke="#5887ff" stroke-width="0.6" />
</rule>
<rule e="way" k="waterway" v="drain">
<line stroke="#B0B0B0" stroke-width="0.7" stroke-linecap="butt" />
<line stroke="#5887ff" stroke-width="0.5" stroke-linecap="butt" />
</rule>
<rule e="way" k="waterway" v="canal">
<line stroke="#B0B0B0" stroke-width="1.1" stroke-linecap="butt" />
<line stroke="#5887ff" stroke-width="0.9" stroke-linecap="butt" />
</rule>
<rule e="way" k="waterway" v="stream" zoom-max="14"> <line stroke="#5887ff" stroke-width="0.5" /> </rule>
<rule e="way" k="waterway" v="stream" zoom-min="15"> <line stroke="#5887ff" stroke-width="0.4" /> </rule>
<rule e="way" k="waterway" v="river"> <line stroke="#5887ff" stroke-width="1.1" /> </rule>
<rule e="way" k="waterway" v="riverbank"> <area fill="#85a7ff" /> </rule>
<rule e="way" k="waterway" v="river"> <pathText cat="tms_landnames" priority="3" k="name" font-style="bold" font-size="11" fill="#0034AE" stroke="#FFFFFF" stroke-width="2.0" /> </rule>
<rule e="way" k="waterway" v="stream|canal"> <pathText cat="tms_landnames" priority="3" k="name" font-style="bold" font-size="9" fill="#0034AE" stroke="#FFFFFF" stroke-width="2.0" /> </rule>
</rule>
</rule>
<!-- underground waterways -->
<rule cat="tms_terrain" e="way" k="tunnel" v="true|yes|culvert" zoom-min="14">
<rule e="way" k="waterway" v="stream|drain|ditch">
<line stroke="#665887ff" stroke-width="0.52" />
<line stroke="#990059b3" scale="all" stroke-width="0.44" stroke-dasharray="0.6,0.6" stroke-linecap="butt" />
<rule e="way" k="*" v="*"> <pathText cat="tms_landnames" priority="3" k="name" font-style="bold" font-size="8" fill="#0034AE" stroke="#FFFFFF" stroke-width="2.0" /> </rule>
</rule>
<rule e="way" k="waterway" v="river|canal">
<line stroke="#405887ff" stroke-width="1" />
<line stroke="#995887ff" scale="all" stroke-width="1" stroke-dasharray="3,4.5" stroke-linecap="butt" />
<rule e="way" k="*" v="*"> <pathText cat="tms_landnames" priority="3" k="name" font-style="bold" font-size="9" fill="#0034AE" stroke="#FFFFFF" stroke-width="2.0" /> </rule>
</rule>
</rule>
<!-- bodies of water -->
<rule cat="tms_terrain" e="way" k="landuse|natural" v="reservoir|basin|water">
<area fill="#85a7ff" />
</rule>
<!-- waterway structures -->
<rule e="way" k="tunnel" v="~|no">
<rule cat="tms_water_land" e="way" k="location" v="~|overground">
<rule e="way" k="waterway" v="dock"> <area fill="#90CCCCCC" /> <line stroke="#CCCCCC" stroke-width="0.5" stroke-linecap="butt" /> </rule>
<rule e="way" k="lock" v="yes|true"> <line stroke="#666666" stroke-width="2.0" stroke-linecap="square" /> <line stroke="#B5D6F1" stroke-width="1.6" stroke-linecap="butt" /> </rule>
<rule e="way" k="waterway" v="weir"> <line stroke="#666666" stroke-width="0.7" /> <line stroke="#EEEEEE" stroke-width="0.7" stroke-dasharray="5,1" stroke-linecap="butt" /> </rule>
<rule e="any" k="waterway" v="weir"> <symbol src="file:/res/s_weir.svg" symbol-width="17" /> </rule>
<rule cat="tms_man-made" e="way" k="man_made" v="pipeline">
<line stroke="#CCCCCC" stroke-width="1.1" stroke-linecap="butt" />
<line stroke="#9CA6BA" stroke-width="0.8" stroke-dasharray="2.2,0.7" scale="all" stroke-linecap="butt" />
<line stroke="#FFFFFF" stroke-width="0.2" stroke-linecap="butt" />
<pathText cat="tms_landnames" k="name" font-family="sans_serif" font-style="normal" font-size="8" fill="#545f78" stroke="#FFFFFF" stroke-width="2.0" repeat="true" repeat-start="100" repeat-gap="300" />
</rule>
</rule>
</rule>
<rule cat="tms_man-made" e="way" k="tunnel|location" v="yes|culvert|underground" zoom-min="16">
<rule e="way" k="man_made" v="pipeline">
<line stroke="#809CA6BA" stroke-width="1.1" stroke-dasharray="1.1,0.35" scale="all" stroke-linecap="butt" />
<pathText cat="tms_landnames" k="name" font-family="sans_serif" font-style="normal" font-size="8" fill="#545f78" stroke="#FFFFFF" stroke-width="2.0" repeat="true" repeat-start="100" repeat-gap="300" />
</rule>
</rule>
<rule cat="tms_water_land" e="way" k="waterway" v="dam">
<line stroke="#333333" stroke-width="1" />
<line stroke="#CCCCCC" stroke-width="1" stroke-dasharray="10,1" stroke-linecap="butt" />
<rule e="any" k="*" v="*" closed="yes">
<area fill="#CCCCCC" />
</rule>
</rule>
<rule cat="tms_water_land" e="any" k="waterway" v="dam" zoom-min="15">
<symbol src="file:/res/s_dam.svg" symbol-width="17" />
</rule>
<!-- POI areas -->
<rule e="way" k="area" v="yes|true">
<rule e="way" k="highway" v="footway|pedestrian"> <area fill="#e4e4e4" stroke="#707070" stroke-width="0.15" /> </rule>
<rule e="way" k="highway" v="path"> <area fill="#9C6800" stroke="#707070" stroke-width="0.15" /> </rule>
<rule e="way" k="highway" v="service|unclassified|residential|road|living_street"> <area fill="#FFFFFF" stroke="#707070" stroke-width="0.15" /> </rule>
</rule>
<rule cat="tms_terrain" e="way" k="historic" v="ruins|castle|memorial|monument|archaeological_site">
<rule e="way" k="building" v="~">
<line stroke="#BBBBBB" stroke-width="0.2" />
<line stroke="#743a00" stroke-width="0.2" stroke-dasharray="4,4" stroke-linecap="butt" />
</rule>
</rule>
<rule cat="tms_terrain" e="way" k="tourism" v="attraction" closed="yes">
<area fill="#BBF2CAEA" stroke="#CCAAC5" />
<symbol id="tms_attraction" src="file:/res/s_attraction.svg" symbol-width="17" />
<rule e="any" k="*" v="*" zoom-min="15"><caption cat="tms_landnames" symbol-id="tms_attraction" k="name" font-style="bold" font-size="9" fill="#444444" stroke="#FFFFFF" stroke-width="2.0" /> </rule>
</rule>
<rule cat="tms_tourism" e="way" k="tourism" v="attraction" closed="no">
<line stroke="#BBF2CAEA" stroke-width="0.8" stroke-dasharray="6,12" stroke-linecap="round" />
<rule e="any" k="*" v="*" zoom-max="14"> <symbol id="tms_attraction" src="file:/res/s_attraction.svg" symbol-width="17" /> </rule>
<rule e="any" k="*" v="*" zoom-min="15"> <caption cat="tms_landnames" symbol-id="tms_attraction" k="name" font-style="bold" font-size="9" fill="#444444" stroke="#FFFFFF" stroke-width="2.0" /> </rule>
</rule>
<rule cat="tms_terrain" e="way" k="tourism" v="zoo"> <area fill="#BBC7F1A3" stroke="#6FC18E" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="tourism" v="picnic_site|camp_site|caravan_site"> <area fill="#BBC7F1A3" stroke="#6FC18E" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="amenity" v="parking"> <area fill="#d3dfe2" stroke="#93b1b8" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="amenity" v="fountain" closed="yes">
<area fill="#B5D6F1" stroke="#000080" stroke-width="0.15" />
<rule e="any" k="drinking_water" v="yes"> <symbol src="file:/res/s_fountain_d.svg" symbol-width="25" /> </rule>
<rule e="any" k="drinking_water" v="*|~"> <symbol src="file:/res/s_fountain.svg" symbol-width="25" /> </rule>
</rule>
<!-- leisure areas -->
<rule cat="tms_terrain" e="way" k="leisure" v="playground|pitch|dog_park"> <area fill="#C7F1A3" stroke="#6FC18E" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="sport" v="tennis">
<area fill="#D18A6A" stroke="#B36C4C" stroke-width="0.2" />
</rule>
<rule cat="tms_terrain" e="way" k="leisure" v="track|byway|ls_track">
<rule e="way" k="area" v="yes|true"> <area fill="#BBBDE3CB" stroke="#6FC18E" stroke-width="0.025" /> </rule>
<rule e="way" k="area" v="~|no|false">
<line stroke="#6FC18E" stroke-width="0.8" />
<line stroke="#BDE3CB" stroke-width="0.7" />
</rule>
</rule>
<rule cat="tms_terrain" e="way" k="power" v="station">
<area fill="#C4C4C4" stroke="#e4e4e4" stroke-width="0.2" />
</rule>
<rule cat="tms_terrain" e="way" k="highway|railway|public_transport" v="platform">
<rule e="any" k="tunnel" v="~|no|false">
<rule e="any" k="*" v="*" closed="yes">
<area fill="#9B9B79" stroke="#D0D0D0" stroke-width="0.3" />
</rule>
<rule e="any" k="*" v="*" closed="no">
<line stroke="#9B9B79" stroke-width="0.7" />
</rule>
</rule>
</rule>
<rule cat="tms_terrain" e="way" k="man_made" v="pier|groyne">
<rule e="any" k="*" v="*" closed="no">
<line stroke="#BAA468" stroke-width="0.8" stroke-linecap="butt" />
<line stroke="#997B29" stroke-width="0.8" stroke-dasharray="1,4" stroke-linecap="butt" />
</rule>
<rule e="any" k="*" v="*" closed="yes">
<area fill="#BAA468" stroke="#997B29" stroke-width="0.2" />
</rule>
</rule>
<!-- natural ways -->
<rule cat="tms_relief" e="way" k="natural" v="*" zoom-min="13">
<!-- Обрывы -->
<rule e="way" k="*" v="cliff">
<line stroke="#BF111111" dy="0.5" stroke-width="1" stroke-dasharray="0.2,1" stroke-linecap="butt" scale="all" />
<line stroke="#BF111111" stroke-width="0.3" stroke-linecap="butt" />
<pathText cat="tms_landnames" k="name" dy="-1.2" font-style="bold_italic" font-family="serif" font-size="8" fill="#333333" stroke="#E5FFFFFF" stroke-width="2" repeat-start="80" repeat-gap="200" />
</rule>
<rule e="way" k="*" v="earth_bank">
<line stroke="#BFbc4b00" dy="0.5" stroke-width="1" stroke-dasharray="0.2,1" stroke-linecap="butt" scale="all" />
<line stroke="#BFbc4b00" stroke-width="0.3" stroke-linecap="butt" />
<pathText cat="tms_landnames" k="name" dy="-1.2" font-style="bold_italic" font-family="serif" font-size="8" fill="#313140" stroke="#E5FFFFFF" stroke-width="2" repeat-start="80" repeat-gap="200" />
</rule>
<!-- Хребты -->
<rule e="way" k="*" v="ridge|arete">
<line stroke="#80000000" stroke-width="0.4" stroke-dasharray="2,3" stroke-linecap="round" scale="all" />
<pathText cat="tms_landnames" k="name" dy="-3" font-style="italic" font-family="serif" font-size="13" fill="#80000000" stroke="#80bbbbbb" stroke-width="1.8" display="always" priority="-20" repeat-start="50" repeat-gap="300" />
<lineSymbol src="file:/res/s_ridge.svg" align-center="true" repeat="true" repeat-gap="180" repeat-start="10" display="always" symbol-percent="60" />
</rule>
<!-- Трещины ледника -->
<rule e="way" k="*" v="crevasse" closed="no">
<line stroke="#73dcff" stroke-width="0.7" stroke-linecap="butt" />
<line stroke="#ff7396" stroke-width="0.5" stroke-dasharray="2,2" stroke-linecap="butt" />
<pathText cat="tms_landnames" k="name" dy="-1.2" font-style="bold_italic" font-family="serif" font-size="10" fill="#666666" stroke="#E5FFFFFF" stroke-width="2" repeat-start="80" repeat-gap="200" />
</rule>
<rule e="way" k="*" v="crevasse" closed="yes">
<line stroke="#73dcff" stroke-width="0.3" />
<area fill="#50ff7396" />
<pathText cat="tms_landnames" k="name" dy="-1.2" font-style="bold_italic" font-family="serif" font-size="10" fill="#666666" stroke="#E5FFFFFF" stroke-width="2" repeat-start="80" repeat-gap="200" />
</rule>
</rule>
<rule cat="tms_relief" e="node" k="natural" v="sinkhole" >
<rule e="any" k="*" v="*" zoom-max="15" ><symbol id="sinkhole" src="file:/res/s_sinkhole.svg" display="always" symbol-percent="60" /> </rule>
<rule e="any" k="*" v="*" zoom-min="16" ><symbol id="sinkhole" src="file:/res/s_sinkhole.svg" display="always" symbol-percent="80" /> </rule>
<caption cat="tms_landnames" k="name" symbol-id="sinkhole" position="below" font-style="bold_italic" font-family="serif" font-size="9" fill="#333333" stroke="#E5FFFFFF" stroke-width="2.00" />
</rule>
<rule cat="tms_relief" e="way" k="barrier|natural" v="ditch|gully" >
<line stroke="#b343464b" dy="0.40" stroke-width="0.54" stroke-dasharray="0.12, 0.8" scale="all" stroke-linecap="butt" />
<line stroke="#b343464b" dy="-0.40" stroke-width="0.54" stroke-dasharray="0, 0.4, 0.12, 0.4" scale="all" stroke-linecap="butt" />
<line stroke="#b343464b" dy="0.6" stroke-width="0.16" stroke-linecap="butt" />
<line stroke="#b343464b" dy="-0.6" stroke-width="0.16" stroke-linecap="butt" />
<pathText cat="tms_landnames" k="name" dy="-1.2" font-style="bold_italic" font-family="serif" font-size="8" fill="#666666" stroke="#E5FFFFFF" stroke-width="2" repeat-start="80" repeat-gap="200" />
</rule>
<!-- Просеки -->
<rule cat="tms_man-made" e="way" k="man_made" v="cutline" >
<line stroke="#99ddffdd" stroke-width="2.2" stroke-linecap="butt" />
</rule>
<!-- Administrative borders -->
<rule e="way" k="admin_level" v="2">
<rule e="any" k="*" v="*">
<line stroke="#80ffff88" stroke-width="3" stroke-linecap="butt" />
<line stroke="#30aa0000" stroke-width="3" stroke-linecap="butt" stroke-dasharray="0,3,3,0" scale="all" />
<line stroke="#ffffff" stroke-width="0.5" />
<line stroke="#60003000" stroke-width="0.5" stroke-dasharray="3,3" scale="all" />
</rule>
</rule>
<!-- Buildings -->
<rule cat="tms_terrain" e="way" k="building" v="*" zoom-max="14"> <area fill="#555555" stroke="#000000" stroke-width="0.3" /> </rule>
<rule cat="tms_terrain" e="way" k="building" v="*" zoom-min="15" zoom-max="15"> <area fill="#666666" stroke="#000000" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="building" v="*" zoom-min="16" zoom-max="16"> <area fill="#777777" stroke="#000000" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="building" v="*" zoom-min="17" zoom-max="17"> <area fill="#888888" stroke="#000000" stroke-width="0.2" /> </rule>
<rule cat="tms_terrain" e="way" k="building" v="*" zoom-min="18"> <area fill="#999999" stroke="#000000" stroke-width="0.2" /> </rule>
<!-- aeroways -->
<!-- runways areas -->
<rule cat="tms_terrain" e="way" k="aeroway" v="aerodrome|helipad" closed="yes"> <area fill="#90D8DCCE" stroke="#000000" stroke-width="0.5" /> </rule>
<rule cat="tms_terrain" e="way" k="aeroway" v="apron"> <area fill="#eeeeee" /> </rule>
<rule cat="tms_terrain" e="way" k="aeroway" v="terminal"> <area fill="#F3D6B6" stroke="#6A5A8E" stroke-width="0.2" /> </rule>
<!-- runways casings -->
<rule e="way" k="aeroway" v="runway" closed="no"> <line stroke="#000000" stroke-width="4" stroke-linecap="butt" /> </rule>
<rule e="way" k="aeroway" v="taxiway"> <line stroke="#000000" stroke-width="2" stroke-linecap="butt" /> </rule>
<!-- aeroway runways cores -->
<rule e="way" k="aeroway" v="runway" closed="no"> <line stroke="#D4DCBD" stroke-width="3.5" stroke-linecap="butt" /> </rule>
<rule cat="tms_terrain" e="way" k="aeroway" v="runway" closed="yes"> <area fill="#D4DCBD" /> <line stroke-width="0.5" stroke="#000000" stroke-linecap="butt" /> </rule>
<rule e="way" k="aeroway" v="taxiway"> <line stroke="#D4DCBD" stroke-width="1.8" stroke-linecap="butt" /> </rule>