I am trying to create a spatial survey using openlayers 2.11, but have some issues with a function for closing multiple popups.

I have followed this approach http://www.osgeo.org/pipermail/openlayers-users/2011-August/021748.html & http://osgeo-org.1803224.n2.nabble.com/popup-close-onhover-out-td6539826.html .

The following code works fine if I only create one popup, but if I click on multiple features (resulting in multiple popups) the function fails to close and post the content.

As an alternative is there a built in function in openlayers to destroy old popups when creating a new popup?

function submitform()
{
document.myform.submit();
loop_popups();
}

function loop_popups()
{ for (var i=0; i<map.popups.length; ++i) 
    { 
        map.removePopup(map.popups[i]); 
    }; 

}

//I execute the script with
<form name="myform" action="sqlinsert.php" method="post" target="_blank">
<a href="javascript: submitform()">Save/close</a>
link|improve this question

50% accept rate
Doesn't form.submit() cause page reload? – igorti Dec 8 '11 at 22:40
feedback

1 Answer

You are using i to count through the array while removing members from it which will only remove half the markers. Instead you should use something like

        while( map.popups.length ) {
                map.removePopup(map.popups[0]);
        }
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.