You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Closes#4550
Using `Math.round` on the `centerCoord` value here causes a coordinate
like `{zoom: 2, column: 1.5, row: 1.5}` to become
`{zoom: 2, column: 2, row: 2}`, which is out of bounds for a z2 tile;
the correct tile for containing those coordinates is `{zoom: 2, column: 1, row: 1}`
Closes#4550
Using `Math.round` on the `centerCoord` value here causes a coordinate
like `{zoom: 2, column: 1.5, row: 1.5}` to become
`{zoom: 2, column: 2, row: 2}`, which is out of bounds for a z2 tile;
the correct tile for containing those coordinates is `{zoom: 2, column: 1, row: 1}`
mapbox-gl-js version: master
Steps to Trigger Behavior
In the example below, change
longitude
to 91 orlatitude
to 67.https://jsbin.com/daladaqaze/edit?html,output
Expected Behavior
Image should appear
Actual Behavior
Image does not appear
The text was updated successfully, but these errors were encountered: