fire events from Popup Panel
to also highlight path and markers when using the side panel. Therefore we duplicate the event code from the base class.
This commit is contained in:
parent
3594bc2605
commit
836c17f2e8
1 changed files with 18 additions and 0 deletions
|
@ -68,10 +68,28 @@ L.U.Popup.Panel = L.U.Popup.extend({
|
||||||
data: { html: this._content },
|
data: { html: this._content },
|
||||||
actions: [this.allButton()],
|
actions: [this.allButton()],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// fire events as in base class Popup.js:onAdd
|
||||||
|
map.fire('popupopen', {popup: this})
|
||||||
|
if (this._source) {
|
||||||
|
this._source.fire('popupopen', {popup: this}, true);
|
||||||
|
if (!(this._source instanceof L.Path)) {
|
||||||
|
this._source.on('preclick', L.DomEvent.stopPropagation);
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onRemove: function (map) {
|
onRemove: function (map) {
|
||||||
map.ui.closePanel()
|
map.ui.closePanel()
|
||||||
|
|
||||||
|
// fire events as in base class Popup.js:onRemove
|
||||||
|
map.fire('popupclose', {popup: this});
|
||||||
|
if (this._source) {
|
||||||
|
this._source.fire('popupclose', {popup: this}, true);
|
||||||
|
if (!(this._source instanceof L.Path)) {
|
||||||
|
this._source.off('preclick', L.DomEvent.stopPropagation);
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
update: function () {},
|
update: function () {},
|
||||||
|
|
Loading…
Reference in a new issue