Displaying 1 result from an estimated 1 matches for "addpopup".
2010 Aug 30
4
Implementation of openBubble for openlayers
...t
implemented yet. I tried to hack a solution but I encountered some problems.
When the popup is created in the toProprietary method from Marker in
mxn.openlayers.core.js, I keep a reference on it with a this.infoPopup =
popup.
Later in the openBubble method, I do :
this.map.addPopup(this.infoPopup);
this.infoPopup.show();
Which basically works but :
* If that openBubble is called too early, a extent is null error happens, I
think it''s because the map hasn''t been entirely drawn. I think it should
somehow "register" to a &quo...