Merge pull request #1076 from seanich/gtap-fix

Fix incorrect call to getTileWidth and getTileHeight in getTileAtPoint
This commit is contained in:
Ian Gilman 2016-11-09 10:39:27 -08:00 committed by GitHub
commit 36aa63361d

View File

@ -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);
}, },