-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Description
Despite initialising SphericalMercator with a different tile size, .bbox returns identical latitude and longitude coordinates for the same inputs, which suggests that tile size is not being taken into account.
Example:
const SM = require("@mapbox/sphericalmercator")
const sm1 = new SM({ size: 256 });
sm1.bbox(8298, 5450, 14);
// [ 2.3291015625, 51.467696956223364, 2.35107421875, 51.481382896100975 ]
const sm2 = new SM({ size: 512 });
sm2.bbox(8298, 5450, 14);
// [ 2.3291015625, 51.467696956223364, 2.35107421875, 51.481382896100975 ]Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels