Replies: 2 comments 3 replies
-
If we were to go with
Is it really just usually, not always? 😅 Having x,y,z (even if it's just |
Beta Was this translation helpful? Give feedback.
-
Closing since since both Square Grid Generator and Bing Tile Grid Generator (as well as their fast versions) can return x,y columns. |
Beta Was this translation helpful? Give feedback.
-
We created a Grid Generator named BingTileGridGenerator in #82. This was based on https://docs.microsoft.com/en-us/bingmaps/articles/bing-maps-tile-system. After further research, the name might not make 100% sense. This is because bing tiles use the same tiling as most web mapping software (gmaps, mapbox). This tiling is an instance of Tile Matrix . Specifically a tile matrix for the EPGS:3857 projection. What makes Bing Maps unique is that they use Quadkeys as a unique identifier instead of the traditional x,y,z used by mapbox or gmaps.
Some possible namings and API
TileMatrixGridGenerator
- where you can specify projection and target id format (either x,y,z or quadkey if possible)WebMapGridGenerator
- where you can specify target id format (either x,y,z or quadkey if possible)QuadkeyGridGenerator
- Still a misnomer since quadkeys are just ids and note actually say anything about the shapeBeta Was this translation helpful? Give feedback.
All reactions