diff --git a/CHANGELOG.md b/CHANGELOG.md index 1932ca406..a081a967c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,6 +59,7 @@ _Breaking developer changes, which may affect downstream projects or sites that * Do not overwrite existing `*=no` tags by a preset's `addTags` * Imply `access=no` in access field of `highway=construction` objects ([#9102]) * Don't show non-language tag-suffixes in multilingual name field ([#9124], thanks [@wcedmisten]) +* Render horse riding centers like farmyards ([#9118]) #### Other * Redact more API tokens from custom imagery sources in changeset metadata tags ([#8976], thanks [@k-yle]) #### :hammer: Development @@ -78,6 +79,7 @@ _Breaking developer changes, which may affect downstream projects or sites that [#9021]: https://github.com/openstreetmap/iD/pull/9021 [#9102]: https://github.com/openstreetmap/iD/issues/9102 [#9124]: https://github.com/openstreetmap/iD/pull/9124 +[#9118]: https://github.com/openstreetmap/iD/issues/9118 [@wcedmisten]: https://github.com/wcedmisten diff --git a/css/25_areas.css b/css/25_areas.css index b3c0a0433..27db4a55d 100644 --- a/css/25_areas.css +++ b/css/25_areas.css @@ -258,14 +258,17 @@ path.fill.tag-landuse-vineyard { /* Tan things */ -path.stroke.tag-landuse-farmyard { +path.stroke.tag-landuse-farmyard, +path.stroke.tag-leisure-horse_riding { stroke: rgb(245, 220, 186); } -path.fill.tag-landuse-farmyard { +path.fill.tag-landuse-farmyard, +path.fill.tag-leisure-horse_riding { stroke: rgba(245, 220, 186, 0.3); fill: rgba(245, 220, 186, 0.3); } -.preset-icon-fill path.area.stroke.tag-landuse-farmyard { +.preset-icon-fill path.area.stroke.tag-landuse-farmyard +.preset-icon-fill path.area.stroke.tag-leisure-horse_riding { stroke: rgb(226, 177, 111); } .pattern-color-farmyard { diff --git a/modules/svg/tag_pattern.js b/modules/svg/tag_pattern.js index 3e7ef7210..410d80e38 100644 --- a/modules/svg/tag_pattern.js +++ b/modules/svg/tag_pattern.js @@ -38,6 +38,9 @@ var patterns = { quarry: 'quarry', vineyard: 'vineyard' }, + leisure: { + horse_riding: 'farmyard' + }, natural: { beach: 'beach', grassland: 'grass',