Skip to content

Commit

Permalink
Change aerodrome final zlevel and waypixels limit
Browse files Browse the repository at this point in the history
Final zoom level z15 for airports with IATA code, z16 for other aerodromes, or if `way_pixels > 192000`
  • Loading branch information
jeisenbe committed Sep 1, 2019
1 parent 03656b6 commit a0eb31b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions amenity-points.mss
Original file line number Diff line number Diff line change
Expand Up @@ -1488,11 +1488,11 @@
marker-fill: @airtransport;
}

[feature = 'aeroway_aerodrome']['access' != 'private']['icao' != null]['iata' != null][zoom >= 10][zoom < 17],
[feature = 'aeroway_aerodrome']['access' = 'private'][zoom >= 12][zoom < 18],
[feature = 'aeroway_aerodrome']['icao' = null][zoom >= 12][zoom < 18],
[feature = 'aeroway_aerodrome']['iata' = null][zoom >= 12][zoom < 18] {
[way_pixels <= 768000],
[feature = 'aeroway_aerodrome']['access' != 'private']['icao' != null]['iata' != null][zoom >= 10][zoom < 16],
[feature = 'aeroway_aerodrome']['access' = 'private'][zoom >= 12][zoom < 17],
[feature = 'aeroway_aerodrome']['icao' = null][zoom >= 12][zoom < 17],
[feature = 'aeroway_aerodrome']['iata' = null][zoom >= 12][zoom < 17] {
[way_pixels <= 192000],
[way_pixels = null] {
marker-file: url('symbols/aerodrome.12.svg');
marker-placement: interior;
Expand Down Expand Up @@ -3116,11 +3116,11 @@
text-placement: interior;
}

[feature = 'aeroway_aerodrome']['access' != 'private']['icao' != null]['iata' != null][zoom >= 11][zoom < 17],
[feature = 'aeroway_aerodrome'][zoom >= 13][zoom < 18]['access' = 'private'],
[feature = 'aeroway_aerodrome'][zoom >= 13][zoom < 18]['icao' = null],
[feature = 'aeroway_aerodrome'][zoom >= 13][zoom < 18]['iata' = null] {
[way_pixels <= 768000],
[feature = 'aeroway_aerodrome']['access' != 'private']['icao' != null]['iata' != null][zoom >= 11][zoom < 16],
[feature = 'aeroway_aerodrome'][zoom >= 13][zoom < 17]['access' = 'private'],
[feature = 'aeroway_aerodrome'][zoom >= 13][zoom < 17]['icao' = null],
[feature = 'aeroway_aerodrome'][zoom >= 13][zoom < 17]['iata' = null] {
[way_pixels <= 192000],
[way_pixels = null] {
text-name: "[name]";
text-size: @standard-font-size;
Expand Down

0 comments on commit a0eb31b

Please sign in to comment.