render horse riding centers like farmyards

closes #9118
This commit is contained in:
Martin Raifer
2022-05-24 15:54:25 +02:00
parent d58656bf48
commit b4d0f0cf9d
3 changed files with 11 additions and 3 deletions
+2
View File
@@ -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
+6 -3
View File
@@ -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 {
+3
View File
@@ -38,6 +38,9 @@ var patterns = {
quarry: 'quarry',
vineyard: 'vineyard'
},
leisure: {
horse_riding: 'farmyard'
},
natural: {
beach: 'beach',
grassland: 'grass',