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>