Skip to content

Commit

Permalink
**Added rendering of tag tourism=wilderness_hut**
Browse files Browse the repository at this point in the history
Rebase to master
Removed usage of shelter_type which can be reintroduced when hstore is available
Removed basic_hut.svg to be used with shelter_type
Added specific symbol for wilderness_hut vs. generic amenity=shelter.

To summarize, the following different kind of huts have specific symbols now:

- amenity=shelter (only shown at zoom >=16)
- tourism=alpine_hut  (not modified within this drop)
- tourism=wilderness_hut (zoom>=13)

alpine_hut: symbols/alpinehut.p.16.png
wilderness_hut: symbols/wilderness_hut.svg
generic shelter: symbols/shelter-14.svg
  • Loading branch information
Ircama committed Aug 22, 2016
1 parent ef48cd7 commit be0cc60
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 13 deletions.
8 changes: 7 additions & 1 deletion amenity-points.mss
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,14 @@
point-placement: interior;
}

[feature = 'tourism_wilderness_hut'][zoom >= 13],
[feature = 'amenity_shelter'][zoom >= 16] {
marker-file: url('symbols/shelter-14.svg');
[feature = 'tourism_wilderness_hut'] {
marker-file: url('symbols/wilderness_hut.svg');
marker-width: 13;
marker-height: 13;
}
marker-fill: @transportation-icon;
marker-placement: interior;
marker-clip: false;
Expand Down Expand Up @@ -1712,6 +1718,7 @@
[feature = 'tourism_hostel'][zoom >= 17],
[feature = 'tourism_chalet'][zoom >= 17],
[feature = 'tourism_guest_house'][zoom >= 17],
[feature = 'tourism_wilderness_hut'][zoom >= 13],
[feature = 'tourism_camp_site'][zoom >= 17] {
text-name: "[name]";
text-size: @standard-text-size;
Expand Down Expand Up @@ -2223,4 +2230,3 @@
}
}
}

Loading

0 comments on commit be0cc60

Please sign in to comment.