mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Merge pull request #1076 from seanich/gtap-fix
Fix incorrect call to getTileWidth and getTileHeight in getTileAtPoint
This commit is contained in:
commit
36aa63361d
@ -353,8 +353,8 @@ $.TileSource.prototype = {
|
|||||||
var pixelX = point.x * widthScaled;
|
var pixelX = point.x * widthScaled;
|
||||||
var pixelY = point.y * widthScaled;
|
var pixelY = point.y * widthScaled;
|
||||||
|
|
||||||
var x = Math.floor(pixelX / this.getTileWidth());
|
var x = Math.floor(pixelX / this.getTileWidth(level));
|
||||||
var y = Math.floor(pixelY / this.getTileHeight());
|
var y = Math.floor(pixelY / this.getTileHeight(level));
|
||||||
|
|
||||||
return new $.Point(x, y);
|
return new $.Point(x, y);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user