From c753dcce46c36c8d3fd94c095dd8a0f3e38f5de0 Mon Sep 17 00:00:00 2001
From: Jeroen Hoek <mail@jeroenhoek.nl>
Date: Sun, 5 Mar 2023 12:38:45 +0100
Subject: [PATCH] Add minimal rendering support for man_made=quay
`man_made=quay` is used to mark artificial sections of sea shores or
river banks as suitable for mooring. This patch introduces minimal
rendering matching that of `man_made=pier`.
---
resources/styles/standard/elemstyles.mapcss | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/resources/styles/standard/elemstyles.mapcss b/resources/styles/standard/elemstyles.mapcss
index db8f12249..7049547c0 100644
a
|
b
|
node[man_made=adit] {
|
1563 | 1563 | icon-image: "presets/landmark/adit.svg"; |
1564 | 1564 | set icon_z17; |
1565 | 1565 | } |
1566 | | area[man_made=pier]:closed { |
| 1566 | area[man_made=pier]:closed, |
| 1567 | area[man_made=quay]:closed { |
1567 | 1568 | fill-color: pier#660000; |
1568 | 1569 | } |
1569 | | way[man_made=pier] { |
| 1570 | way[man_made=pier], |
| 1571 | way[man_made=quay] { |
1570 | 1572 | width: 2; |
1571 | 1573 | color: pier#660000; |
1572 | 1574 | } |