From b5af59e4059e99a6741e972c833db187e762bd41 Mon Sep 17 00:00:00 2001
From: Jeroen Hoek <mail@jeroenhoek.nl>
Date: Sun, 5 Mar 2023 14:46:16 +0100
Subject: [PATCH] Add boundary=place rendering
Adds `boundary=place` to the list of boundaries (and their relations).
---
resources/styles/standard/elemstyles.mapcss | 2 ++
1 file changed, 2 insertions(+)
diff --git a/resources/styles/standard/elemstyles.mapcss b/resources/styles/standard/elemstyles.mapcss
index db8f12249..43f658440 100644
|
a
|
b
|
node[mountain_pass?] {
|
| 5311 | 5311 | |
| 5312 | 5312 | relation[boundary=protected_area] > way::core_boundary, |
| 5313 | 5313 | relation[boundary=administrative] > way::core_boundary, |
| | 5314 | relation[boundary=place] > way::core_boundary, |
| 5314 | 5315 | relation[boundary=postal_code] > way::core_boundary, |
| 5315 | 5316 | relation[boundary=political] > way::core_boundary, |
| 5316 | 5317 | relation[boundary=maritime] > way::core_boundary, |
| … |
… |
relation[boundary=hazard] > way::core_boundary,
|
| 5318 | 5319 | relation[boundary=national_park] > way::core_boundary, |
| 5319 | 5320 | way[boundary=protected_area]::core_boundary, |
| 5320 | 5321 | way[boundary=administrative]::core_boundary, |
| | 5322 | way[boundary=place]::core_boundary, |
| 5321 | 5323 | way[boundary=postal_code]::core_boundary, |
| 5322 | 5324 | way[boundary=political]::core_boundary, |
| 5323 | 5325 | way[boundary=maritime]::core_boundary, |