Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barryhunter/e42f0c4756e34d5d07db4a170c7ec680 to your computer and use it in GitHub Desktop.
Save barryhunter/e42f0c4756e34d5d07db4a170c7ec680 to your computer and use it in GitHub Desktop.
Basic working implementation of L.TileLayer.refresh()
L.TileLayer2 = L.TileLayer.extend({
_refreshTileUrl: function(tile, url) {
//use a image in background, so that only replace the actual tile, once image is loaded in cache!
var img = new Image();
img.onload = function() {
L.Util.requestAnimFrame(function() {
tile.el.src = url;
});
}
img.src = url;
},
refresh: function() {
//prevent _tileOnLoad/_tileReady re-triggering a opacity animation
var wasAnimated = this._map._fadeAnimated;
this._map._fadeAnimated = false;
for (var key in this._tiles) {
tile = this._tiles[key];
if (tile.current && tile.active) {
var oldsrc = tile.el.src;
var newsrc = this.getTileUrl(tile.coords);
if (oldsrc != newsrc) {
//L.DomEvent.off(tile, 'load', this._tileOnLoad); ... this doesnt work!
this._refreshTileUrl(tile,newsrc);
}
}
}
if (wasAnimated)
setTimeout(function() { map._fadeAnimated = wasAnimated; }, 5000);
}
});
L.tileLayer2 = function(url, options) {
return new L.TileLayer2(url, options);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment