Flip colors of wood and other natural material

requested in #727
This commit is contained in:
Mateusz Konieczny 2022-02-01 13:45:58 +01:00
parent 09b9a4f2ce
commit ae39bc8066
2 changed files with 4 additions and 4 deletions

View File

@ -160,7 +160,7 @@
<Style name="construction_core_material">
<Rule>
<Filter>[construction_core_material] = "Wood"</Filter>
<PolygonSymbolizer fill="#96613b" />
<PolygonSymbolizer fill="#b5a859" />
</Rule>
<Rule>
<Filter>[construction_core_material] = "Stone"</Filter>
@ -184,7 +184,7 @@
</Rule>
<Rule>
<Filter>[construction_core_material] = "Other Natural Material"</Filter>
<PolygonSymbolizer fill="#b5a859" />
<PolygonSymbolizer fill="#96613b" />
</Rule>
<Rule>
<Filter>[construction_core_material] = "Other Man-Made Material"</Filter>

View File

@ -75,13 +75,13 @@ export const categoryMapsConfig: {[key in Category]: CategoryMapDefinition[]} =
legend: {
title: 'Construction',
elements: [
{ color: "#96613b", text: "Wood" },
{ color: "#b5a859", text: "Wood" },
{ color: "#ffffe3", text: "Stone" },
{ color: "#f5d96b", text: "Brick" },
{ color: "#beffe8", text: "Steel" },
{ color: "#fca89d", text: "Reinforced Concrete" },
{ color: "#5c8970", text: "Other Metal" },
{ color: "#b5a859", text: "Other Natural Material" },
{ color: "#96613b", text: "Other Natural Material" },
{ color: "#c48a85", text: "Other Man-Made Material" }
]
},