OpenLayers.Map has three functions that look like being used for freeing memory: destroy(), unloadDestroy(), updateSizeDestroy() (link).

Am I supposed to explicitly call them or not? From the description of "unloadDestroy", for example, it seems that it is already called by something.

I'm looking something similar to Google Maps' GUnload, which is supposed to be run upon page unload event - is there something similar for OpenLayers?

Thanks!

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

In the source it looks like unloadDestroy is added as an event on map initialization, so unless you have a specific need to destroy the map before page unload you probably have nothing to worry about.

https://github.com/openlayers/openlayers/blob/master/lib/OpenLayers/Map.js#L565

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.