-
Notifications
You must be signed in to change notification settings - Fork 831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add icons for memorial subtags #3356
Changes from 12 commits
c3864c8
2c1f2f4
7809e2b
cd95225
3a6699f
d36e33e
1404814
aee4e02
1c3b1d7
408f9f7
38519d2
a3845c9
ad2c48f
0b58262
e096de1
60301c9
a70e5eb
f3e38e8
99e06e9
f1a320a
65eb88a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,10 +156,14 @@ | |
} | ||
|
||
[feature = 'tourism_artwork'][zoom >= 17] { | ||
marker-file: url('symbols/tourism/artwork.svg'); | ||
[artwork_type != 'statue'] { | ||
marker-file: url('symbols/tourism/artwork.svg'); | ||
} | ||
[artwork_type = 'statue'] { | ||
marker-file: url('symbols/historic/statue.svg'); | ||
} | ||
marker-fill: @memorials; | ||
marker-placement: interior; | ||
marker-clip: false; | ||
} | ||
|
||
[feature = 'tourism_camp_site'][zoom >= 16] { | ||
|
@@ -765,21 +769,34 @@ | |
marker-clip: false; | ||
} | ||
|
||
[feature = 'historic_memorial'][zoom >= 17] { | ||
[feature = 'historic_memorial'][zoom >= 17], | ||
[feature = 'historic_memorial_stele'][zoom >= 19] { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we have There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I also think this should be rather z18+. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. both fixed |
||
marker-file: url('symbols/historic/memorial.svg'); | ||
[memorial = 'bust'][zoom >= 19] { | ||
marker-file: url('symbols/historic/bust.svg'); | ||
} | ||
[memorial = 'blue_plaque'][zoom >= 19], | ||
[memorial = 'plaque'][zoom >= 19] { | ||
marker-file: url('symbols/historic/plaque.svg'); | ||
} | ||
[memorial = 'statue'][zoom >= 19] { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should be still z17+. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed, I left blue_plaque to z19 |
||
marker-file: url('symbols/historic/statue.svg'); | ||
} | ||
[memorial = 'stone'][zoom >= 19] { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should be z18+. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. stone also to z18 ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, I think so. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixed |
||
marker-file: url('symbols/historic/stone.svg'); | ||
} | ||
marker-fill: @memorials; | ||
marker-placement: interior; | ||
marker-clip: false; | ||
} | ||
|
||
[feature = 'historic_memorial_plaque'][zoom >= 19] { | ||
marker-file: url('symbols/historic/plaque.svg'); | ||
[feature = 'man_made_obelisk'][zoom >= 17] { | ||
marker-file: url('symbols/historic/obelisk.svg'); | ||
marker-fill: @memorials; | ||
marker-placement: interior; | ||
marker-clip: false; | ||
} | ||
|
||
[feature = 'man_made_obelisk'][zoom >= 16], | ||
[feature = 'historic_monument'][zoom >= 16] { | ||
marker-file: url('symbols/historic/monument.svg'); | ||
marker-fill: @memorials; | ||
|
@@ -1829,7 +1846,7 @@ | |
[feature = 'tourism_artwork'][zoom >= 17], | ||
[feature = 'historic_memorial'][zoom >= 17], | ||
[feature = 'historic_memorial_plaque'][zoom >= 19], | ||
[feature = 'man_made_obelisk'][zoom >= 16], | ||
[feature = 'man_made_obelisk'][zoom >= 17], | ||
[feature = 'historic_monument'][zoom >= 16], | ||
[feature = 'historic_fort'][zoom >= 16], | ||
[feature = 'historic_castle'][zoom >= 16], | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to exclude here all defined memorials which are to be shown on z18 or z19, because now they first look like a generic memorial.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What would be displayed at z17 ? If I exclude all the features listed below, we will highlight from z17
historic=memorial
without memorial subtags which are not the most important ones.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that I should be more accurate:
This way we have all three zoom levels used, which helps keep the map clean and distinct.
Generic memorials can be very different and have different size, for me generic memorial on z17 makes sense after generic monument at z16.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made corrections, I have tested on
memorial=stele
andmemorial=bust
and will check the rest tomorrow