walkermatt / ol-popup

OpenLayers popup overlay

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shown Event?

mehmetalidumlu opened this issue · comments

Hi,
ol3-popup has any event? For example "shown" event.

Hi, no there aren't popup specific events dispatched at present. As the popup is an ol.Overlay you may find that one of the standard ol.Overlay events allow you to do what you need. Something like:

popup.on('change:position', function(evt) {
    console.log(evt);
});