Add fill pattern for reservoir

This commit is contained in:
RudyTheDev
2018-12-15 15:32:48 +02:00
parent 43cea82d6f
commit b92592b6b4
4 changed files with 4 additions and 0 deletions
+1
View File
@@ -104,6 +104,7 @@ path.fill.tag-natural-water {
background-color: rgba(119, 211, 222, 0.3);
}
.pattern-color-waves,
.pattern-color-water,
.pattern-color-pond {
fill: rgba(119, 211, 222, 0.3);
}
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

+2
View File
@@ -41,6 +41,7 @@ export function svgAreas(projection, context) {
meadow: 'meadow',
military: 'construction',
orchard: 'orchard',
reservoir: 'water',
quarry: 'quarry',
vineyard: 'vineyard'
},
@@ -51,6 +52,7 @@ export function svgAreas(projection, context) {
scrub: 'scrub',
water: [
{ water: 'pond', pattern: 'pond' },
{ water: 'reservoir', pattern: 'water' },
{ pattern: 'waves' }
],
wetland: [
+1
View File
@@ -125,6 +125,7 @@ export function svgDefs(context) {
['quarry', 'quarry'],
['scrub', 'bushes'],
['vineyard', 'vineyard'],
['water', 'lines'],
['waves', 'waves'],
['wetland', 'wetland'],
['wetland_marsh', 'wetland_marsh'],