Add quarry fill pattern

This commit is contained in:
RudyTheDev
2018-11-18 20:52:33 +02:00
parent f41bb055f2
commit 46f762c0a6
4 changed files with 8 additions and 2 deletions
+4
View File
@@ -284,6 +284,10 @@ path.fill.tag-landuse-quarry {
border-color: rgb(170, 170, 170);
background-color: rgba(140, 140, 140, 0.5);
}
.pattern-color-quarry
{
fill: rgba(140, 140, 140, 0.5);
}
/* Light gray overrides */
path.stroke.tag-natural-cave_entrance,
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 265 B

+2 -1
View File
@@ -39,7 +39,8 @@ export function svgAreas(projection, context) {
grass: 'grass',
meadow: 'meadow',
military: 'construction',
orchard: 'orchard'
orchard: 'orchard',
quarry: 'quarry'
},
natural: {
beach: 'beach',
+2 -1
View File
@@ -92,7 +92,8 @@ export function svgDefs(context) {
['forest', 'forest'],
['forest_broadleaved', 'forest_broadleaved'],
['forest_needleleaved', 'forest_needleleaved'],
['forest_leafless', 'forest_leafless']
['forest_leafless', 'forest_leafless'],
['quarry', 'quarry']
])
.enter()
.append('pattern')