Skip to content

Commit

Permalink
Merge pull request #2655 from math1985/no-malls
Browse files Browse the repository at this point in the history
Don't render malls as dots (fixes #2651)
  • Loading branch information
nebulon42 authored Jun 13, 2017
2 parents f1e8caf + 16db290 commit fcb8ac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions amenity-points.mss
Original file line number Diff line number Diff line change
Expand Up @@ -566,15 +566,15 @@
}

[feature = 'shop'] {
[zoom >= 17],
[shop != 'mall'][zoom >= 17],
[shop = 'supermarket'][zoom >= 16],
[shop = 'department_store'][zoom >= 16] {
marker-placement: interior;
marker-clip: false;
marker-fill: @shop-icon;
}

[zoom >= 17][zoom < 18][shop != 'supermarket'][shop != 'department_store'] {
[zoom >= 17][zoom < 18][shop != 'supermarket'][shop != 'department_store'][shop != 'mall'] {
marker-placement: interior;
marker-clip: false;
marker-fill: @shop-icon;
Expand Down

0 comments on commit fcb8ac3

Please sign in to comment.