forked from gravitystorm/openstreetmap-carto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
981ac37
commit 1de420d
Showing
2 changed files
with
25 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,24 @@ | ||
/* | ||
#citywalls { | ||
[zoom >= 14] { | ||
line-color: grey; | ||
line-width: 4; | ||
line-opacity: 0.8; | ||
[zoom >= 15] { | ||
line-width: 6; | ||
} | ||
[zoom >= 16] { | ||
line-width: 9; | ||
} | ||
} | ||
} | ||
|
||
<Style name="citywalls"> | ||
<Rule> | ||
&maxscale_zoom14; | ||
&minscale_zoom14; | ||
<LineSymbolizer stroke-linejoin="round" stroke="grey" stroke-width="4" stroke-opacity="0.8"/> | ||
</Rule> | ||
<Rule> | ||
&maxscale_zoom15; | ||
&minscale_zoom15; | ||
<LineSymbolizer stroke-linejoin="round" stroke="grey" stroke-width="6" stroke-opacity="0.8"/> | ||
</Rule> | ||
<Rule> | ||
&maxscale_zoom16; | ||
&minscale_zoom18; | ||
<LineSymbolizer stroke-linejoin="round" stroke="grey" stroke-width="9" stroke-opacity="0.8"/> | ||
</Rule> | ||
</Style> | ||
<Style name="castle_walls"> <- lines and polygons layers | ||
<Rule> | ||
&maxscale_zoom14; | ||
&minscale_zoom15; | ||
<LineSymbolizer stroke="#999" stroke-width="1"/> | ||
</Rule> | ||
<Rule> | ||
&maxscale_zoom16; | ||
<LineSymbolizer stroke="#888" stroke-width="2"/> | ||
</Rule> | ||
</Style> | ||
*/ | ||
.castlewalls { | ||
[zoom >= 14] { | ||
line-color: #999; | ||
line-width: 1; | ||
} | ||
[zoom >= 16] { | ||
line-color: #888; | ||
line-width: 2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters