tangrams / tangram-es

2D and 3D map renderer using OpenGL ES
MIT License
827 stars 239 forks source link

FR: Allow for higher zoom values #2264

Open Atrate opened 3 years ago

Atrate commented 3 years ago

Related, downstream issue: https://github.com/streetcomplete/StreetComplete/issues/2878

Use case: When displaying partially overlapping markers on a map, they are often hidden if their position is too close to each other. This often makes it impossible to click/read some markers, especially when the map is at max zoom already.

Proposed solution: Increase the maximum zoom level by 2-3 steps, e.g. to 22 or 23, so that applications can utilize higher zoom levels if they need to.

nvkelso commented 3 years ago

Some SDKs also allow multiple tap feature picking... like if there are 2 overlapping icons, the first tap brings up the top icon, but the second tap brings up the "hidden" icon.

Atrate commented 1 year ago

Is the limitation just a matter of changing a constant or is there some rendering-based blocker?