From 8ca0db555c47b98648e523397d02a205ab09a653 Mon Sep 17 00:00:00 2001 From: Tobias Date: Thu, 25 Apr 2024 05:00:25 +0200 Subject: [PATCH] crossing: Fix marking* templates by allowing `line` geometries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The markings templates are not touched by this PR and it does seem to work without this. However, the fields are used on line and point geometries so either the `geometry` field is ignored during build or something else is happening… --- data/presets/@templates/crossing/markings.json | 3 ++- data/presets/@templates/crossing/markings_yes.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/data/presets/@templates/crossing/markings.json b/data/presets/@templates/crossing/markings.json index 7f988d5b..8a838aef 100644 --- a/data/presets/@templates/crossing/markings.json +++ b/data/presets/@templates/crossing/markings.json @@ -6,7 +6,8 @@ "crossing/markings-PL" ], "geometry": [ - "point" + "point", + "line" ], "tags": { "@template": "crossing/markings" diff --git a/data/presets/@templates/crossing/markings_yes.json b/data/presets/@templates/crossing/markings_yes.json index f0ac114f..4fd724fd 100644 --- a/data/presets/@templates/crossing/markings_yes.json +++ b/data/presets/@templates/crossing/markings_yes.json @@ -6,7 +6,8 @@ "crossing/markings_yes-PL" ], "geometry": [ - "point" + "point", + "line" ], "tags": { "@template": "crossing/markings_yes"