mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-12-25 01:57:53 +01:00
Merge pull request #3508 from JLyne/leaflet-fix
Fix DynmapTileLayer sharing object instances
This commit is contained in:
commit
faccb8d604
@ -75,10 +75,17 @@ var DynmapLayerControl = L.Control.Layers.extend({
|
|||||||
|
|
||||||
|
|
||||||
var DynmapTileLayer = L.TileLayer.extend({
|
var DynmapTileLayer = L.TileLayer.extend({
|
||||||
_namedTiles: {},
|
_namedTiles: null,
|
||||||
_cachedTileUrls: {},
|
_cachedTileUrls: null,
|
||||||
_loadQueue: [],
|
_loadQueue: null,
|
||||||
_loadingTiles: [],
|
_loadingTiles: null,
|
||||||
|
|
||||||
|
initialize: function() {
|
||||||
|
this._namedTiles = {};
|
||||||
|
this._cachedTileUrls = {};
|
||||||
|
this._loadQueue = [];
|
||||||
|
this._loadingTiles = [];
|
||||||
|
},
|
||||||
|
|
||||||
createTile: function(coords, done) {
|
createTile: function(coords, done) {
|
||||||
var me = this,
|
var me = this,
|
||||||
|
@ -35,6 +35,7 @@ var HDMapType = DynmapTileLayer.extend({
|
|||||||
this.projection = new HDProjection($.extend({map: this}, options));
|
this.projection = new HDProjection($.extend({map: this}, options));
|
||||||
|
|
||||||
L.Util.setOptions(this, options);
|
L.Util.setOptions(this, options);
|
||||||
|
DynmapTileLayer.prototype.initialize.call(this, options);
|
||||||
},
|
},
|
||||||
getTileName: function(coords) {
|
getTileName: function(coords) {
|
||||||
var info = this.getTileInfo(coords);
|
var info = this.getTileInfo(coords);
|
||||||
|
Loading…
Reference in New Issue
Block a user