trekarta icon indicating copy to clipboard operation
trekarta copied to clipboard

Tracks with stipple at zoom 13

Open hungerburg opened this issue 3 years ago • 0 comments

Tracks with stipple (from smoothness) get invisible at zoom 13, those with no stipple still show; eg https://www.openstreetmap.org/way/30247810

Quick fix, leave width alone, doing this for all grades only slightly emphasizes drawn through tracks:

app/src/main/assets/styles/inc_highways.xml
@@ -410,16 +410,16 @@
                                     </m>
                                 </m>
                                 <m k="smoothness" v="excellent|good|intermediate|bad">
-                                    <line use="highway:track:good" width="-0.8" />
+                                    <line use="highway:track:good" />
                                 </m>
                                 <m k="smoothness" v="~|very_bad|horrible">
-                                    <line use="highway:track:horrible" width="-0.8" />
+                                    <line use="highway:track:horrible" />
                                 </m>
                                 <m k="smoothness" v="very_horrible">
-                                    <line use="highway:track:very_horrible" width="-0.8" />
+                                    <line use="highway:track:very_horrible" />
                                 </m>
                                 <m k="smoothness" v="impassable">
-                                    <line use="highway:track:impassable" width="-0.8" />
+                                    <line use="highway:track:impassable" />
                                 </m>
                             </m>
                             <m zoom-min="14">

UPDATE: add pictures made for this - before - after Screenshot_1619428209 - Screenshot_1619428245

hungerburg avatar Apr 26 '21 09:04 hungerburg