-
Notifications
You must be signed in to change notification settings - Fork 826
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
Order POI by way_area #860
Order POI by way_area #860
Conversation
Rebased. |
I think we can speed up the merging of pull requests if more people assist in reviewing them. Is anyone interesting in reviewing this pull request? |
I've picked up a few errors with this PR:
|
Thanks for the review! |
Strange, I thought it parsed when I submitted the PR. Obviously submitted too fast. |
f8151ef
to
868c2fc
Compare
POI are now ordered by way area. Note that icons are never rendered on top of each other, so this has only influence on priority decision of icon rendering. Large POI (such as universities, malls, etc.) are now rendered with higher priority. The old order was: * Render points with higher priority than areas * Icon priority from high to low: tourism, amenity, highway, waterway, man_made, historic, shop, leisure * Text priority from high to low: place, amenity, natural, historic, leisure, landuse, tourism, waterway, man_made, shop, aeroway It is clear that the old order was quite a mess. * Resolves partially gravitystorm#287 * Resolves partially gravitystorm#797 * Resolves gravitystorm#802 * Resolves https://trac.openstreetmap.org/ticket/4100
4e373d2
to
064e00c
Compare
064e00c
to
ca80283
Compare
I fixed the issues above, and I believe it now works as intended. I also fixed #757 (about department store icons) in the process. |
Is it fixing also #353 ? |
Thanks, yes it does. |
POI are now ordered by way area. Note that icons are never rendered on top
of each other, so this has only influence on priority decision of icon
rendering.
Large POI (such as universities, malls, etc.) are now rendered with higher
priority.
The old order was:
It is clear that the old order was quite a mess.