From ed4b4e70c031683f3669870e7777e76f7623408d Mon Sep 17 00:00:00 2001 From: Patrick Arlt Date: Tue, 6 Jan 2015 10:34:19 -0800 Subject: [PATCH] cleanup logic --- debug/map/popup.html | 65 ++++++++++------------------------------ src/layer/Layer.Popup.js | 43 +++++++++++--------------- 2 files changed, 33 insertions(+), 75 deletions(-) diff --git a/debug/map/popup.html b/debug/map/popup.html index 43b14dab..47d0fc15 100644 --- a/debug/map/popup.html +++ b/debug/map/popup.html @@ -16,14 +16,6 @@
- - - - - - - - diff --git a/src/layer/Layer.Popup.js b/src/layer/Layer.Popup.js index f464e8ad..0ce5ceac 100644 --- a/src/layer/Layer.Popup.js +++ b/src/layer/Layer.Popup.js @@ -42,35 +42,24 @@ L.Layer.include({ }, openPopup: function (target) { - var layer; + var layer = this; var latlng; - // handles figuring out `layer` and `latlng` from `target` - // assumes target will be one of - // * undefined - // * Layer - // * [lat,lng] - // * LatLng - if (!target) { for (var id in this._layers) { layer = this._layers[id]; break; } - layer = layer || this; - latlng = layer._latlng || layer.getCenter(); - } else if (target instanceof L.Layer) { - layer = target; - latlng = layer._latlng || layer.getCenter(); - } else { - layer = this; - latlng = target; } + if (target instanceof L.Layer) { + layer = target; + } + + latlng = layer._latlng || layer.getCenter(); + if (this._popup && this._map) { - this._popup.options.offset = this._popupAnchor(layer); // update the popup offset based on our layer - this._popup._source = layer; // update popup source - this._popup.update(); // update the popup (will update content if popup uses a function) + this._setupPopup(layer); this._map.openPopup(this._popup, latlng); } @@ -110,16 +99,20 @@ L.Layer.include({ if (this._popup && this._map && this._map.hasLayer(this._popup) && this._popup._source === e.layer) { this.closePopup(); } else { - var popupTarget = e.layer || e.target; - this._popup.options.offset = this._popupAnchor(popupTarget); - this._popup._source = popupTarget; - if (typeof this._popup._content === 'function') { - this._popup.update(); - } + var layer = e.layer || e.target; + this._setupPopup(layer); this._map.openPopup(this._popup, e.latlng); } }, + _setupPopup: function (layer) { + this._popup.options.offset = this._popupAnchor(layer); + if (typeof this._popup._content === 'function') { + this._popup._source = layer; + this._popup.update(); + } + }, + _popupAnchor: function(layer){ var anchor = (layer._getPopupAnchor) ? layer._getPopupAnchor() : [0,0]; return L.point(anchor).add(L.Popup.prototype.options.offset);