-
Notifications
You must be signed in to change notification settings - Fork 822
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve mid-zoom levels and water color
This PR changes the following: * Landcover in z<12 is now less bright. * Built-up landcover areas are now rendered more prominently in z<12. * Unimportant roads are now white rather than gray. * Water is now a brighter blue (thakns @kocio-pl). * Low/midzoom roads are now rendered with bright halos. This should improve the legibility and esthetics of the map. In particular: * Roads, esp. primary roads, are now better legible on zooms 8-11 * Water areas are easier to recognize * Minor roads on mid-zoom levels are rendered more clearly * Residential areas are more prominent and easier to recognize
- Loading branch information
1 parent
c169d8b
commit 5fd79b7
Showing
5 changed files
with
72 additions
and
38 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
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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ Map { | |
background-color: @water-color; | ||
} | ||
|
||
@water-color: #b5d0d0; | ||
@water-color: #aad3df; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
kocio-pl
Collaborator
|
||
@land-color: #f2efe9; | ||
|
||
@standard-halo-radius: 1; | ||
|
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,4 +1,4 @@ | ||
@water-text: #6699cc; | ||
@water-text: darken(#6699cc, 10%); | ||
@glacier: #ddecec; | ||
@glacier-line: #9cf; | ||
|
||
|
This is a fantastic change for the better! Thank you so much! It is finally possible to tell small lakes apart from the surrounding forest!