From 00fd3e56a243b9b5ec9372a86d8acaca1f1d5b4f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stephan=20B=C3=B6sch-Plepelits?= <skunk@xover.mud.at>
Date: Sun, 1 Dec 2024 08:25:36 +0100
Subject: [PATCH] cycleway: fix markerSymbol by forcing '0' for offset

---
 cycleway_types.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/cycleway_types.yaml b/cycleway_types.yaml
index d9f0bb8..2ac1ced 100644
--- a/cycleway_types.yaml
+++ b/cycleway_types.yaml
@@ -138,6 +138,8 @@ feature:
     offset: |
       {% if tags.segregated == 'yes' %}
       {{ const.types[type].width / 2 - 1 }}
+      {% else %}
+      0
       {% endif %}
 
     pattern: |
@@ -297,6 +299,7 @@ feature:
       {{ const.otherInfrastructure[tags.cycleway].lineCap|default('round') }}
     dashArray: |
       {{ const.otherInfrastructure[tags.cycleway].dashArray|default('') }}
+    offset: 0
     zIndex: |-
       {{ tags.layer|default(0) - 0.1 }}