-
Notifications
You must be signed in to change notification settings - Fork 11
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
Error with tileSize = 512 #3
Comments
I have not tested it with tiles different to 256. Can you provide a public source to do some test at 512? |
Hi. Thanks for sharing the great source code. |
Mercator library divides tiles in hardcoded 256 probably something to check. |
Hi.
If I use tileSize=512 then need to fix
getTileId
function in MVTSource, change parameterzoom
tozoom-1
getTileId(zoom, x, y) { return [zoom - 1, x, y].join(":"); }
The text was updated successfully, but these errors were encountered: