fix occasional error message in TileLayer.js under mobile webkit

This commit is contained in:
Mourner 2011-04-13 12:00:56 +03:00
parent 6cf7d0aa4e
commit e940a6b9ab

View File

@ -143,7 +143,9 @@ L.TileLayer = L.Class.extend({
// remove tile if it's out of bounds
if (x < bounds.min.x || x > bounds.max.x || y < bounds.min.y || y > bounds.max.y) {
if (this._tiles[key].parentNode == this._container) {
this._container.removeChild(this._tiles[key]);
}
delete this._tiles[key];
}
}