fix occasional error message in TileLayer.js under mobile webkit
This commit is contained in:
parent
6cf7d0aa4e
commit
e940a6b9ab
@ -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];
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user