Skip to content

Commit

Permalink
Restore address rendering at z17 and move adress color to a variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sommerluk committed Sep 4, 2016
1 parent 9f1aa98 commit 3eb114a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions addressing.mss
@@ -1,3 +1,5 @@
@address-color: #666;

#interpolation {
[zoom >= 17] {
line-color: #888;
Expand All @@ -7,13 +9,13 @@
}

#housenumbers {
[zoom >= 18] {
[zoom >= 17] {
text-name: "[addr:housenumber]";
text-placement: interior;
text-min-distance: 1;
text-wrap-width: 0;
text-face-name: @book-fonts;
text-fill: #666;
text-fill: @address-color;
text-size: 10;
[zoom >= 20] {
text-size: 11;
Expand All @@ -22,12 +24,12 @@
}

#housenames {
[zoom >= 18] {
[zoom >= 17] {
text-name: "[addr:housename]";
text-placement: interior;
text-wrap-width: 20;
text-face-name: @book-fonts;
text-fill: #666;
text-fill: @address-color;
text-size: 10;
[zoom >= 20] {
text-size: 11;
Expand Down

0 comments on commit 3eb114a

Please sign in to comment.