This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

Bus Stops partially missing in zoom level 17

0

i imported OSM data to PostgreSQL and drawing the map using TileMill. i notice bus_stop show less in zoom level 17 but showing all bus stops in level 18+, do anyone know how to fix this?

/* labels.mss MapCSS*/
#planetosmpoint[amenity='bus_station'][zoom>=10] { point-file: url(res/bus-15.png); }
#planetosmpoint[highway='bus_stop'][zoom>=16] { point-file: url(res/bus-15.png); }

asked 20 Oct '12, 10:03

Simon's gravatar image

Simon
1112
accept rate: 0%

edited 20 Oct '12, 10:04


One Answer:

0

solved ...

#planetosmpoint[amenity='bus_station'][zoom>=10],#planetosmpoint[highway='bus_stop'][zoom>=16] { point-allow-overlap:true; }

answered 20 Oct '12, 10:16

Simon's gravatar image

Simon
1112
accept rate: 0%

edited 20 Oct '12, 11:57

Source code available on GitHub .