I've detected an issue when the function loadTile is called, because tilePoint.z is not defined (at least it happens to me), in order to fix that I've modified the loadTile function to adjust the tile Point:
_loadTile: function (tile, tilePoint) {
this._adjustTilePoint(tilePoint);
var layer = this;
var req = new XMLHttpRequest();
this._requests.push(req);
req.onreadystatechange = this._xhrHandler(req, layer, tile);
req.open('GET', this.getTileUrl(tilePoint), true);
req.send();
},
It happens with the latest version of the code ofLeaflet 0.6-dev, with 0.5 it works fine.
Hi!
Nice library, It's really useful!
I've detected an issue when the function loadTile is called, because tilePoint.z is not defined (at least it happens to me), in order to fix that I've modified the loadTile function to adjust the tile Point:
_loadTile: function (tile, tilePoint) {
It happens with the latest version of the code ofLeaflet 0.6-dev, with 0.5 it works fine.
Do you want I upload this changes to the trunk?