Fix DynmapTileLayer sharing object instances

This commit is contained in:
James Lyne 2021-10-04 20:40:07 +01:00
parent 3a7a4a81e5
commit 0630b2f15d
2 changed files with 12 additions and 4 deletions

View File

@ -75,10 +75,17 @@ var DynmapLayerControl = L.Control.Layers.extend({
var DynmapTileLayer = L.TileLayer.extend({
_namedTiles: {},
_cachedTileUrls: {},
_loadQueue: [],
_loadingTiles: [],
_namedTiles: null,
_cachedTileUrls: null,
_loadQueue: null,
_loadingTiles: null,
initialize: function() {
this._namedTiles = {};
this._cachedTileUrls = {};
this._loadQueue = [];
this._loadingTiles = [];
},
createTile: function(coords, done) {
var me = this,

View File

@ -35,6 +35,7 @@ var HDMapType = DynmapTileLayer.extend({
this.projection = new HDProjection($.extend({map: this}, options));
L.Util.setOptions(this, options);
DynmapTileLayer.prototype.initialize.call(this, options);
},
getTileName: function(coords) {
var info = this.getTileInfo(coords);