Optimization: Reduce size of Quadkey #90
Labels
feature-request
Request for a new feature
good first issue
Good for newcomers
optimization
Task which is not required but improves usability/performance
Milestone
This is an optimization without any clear benefit/problem associated -> Low Priority.
🤔 Expected Behavior
😯 Current Behavior
The quadkey currently uses
8 bits for zoom level + MAX_ZOOM * 8 bits
while it could be optimized to8 bits for zoom level + MAX_ZOOM * 2 bits
. The 2 bits define the square used in each subdivision of the quad tree, it can be NW (north west), NE (north east), SW (south west) or SE (south east).💁 Possible Solution
🔦 Context
💻 Examples
The text was updated successfully, but these errors were encountered: