Dear listers!
Did anyone notice there might be a bug at addPopup:
function(popup, exclusive) in Map.js.
this method first remove all the popups when the exclusive flag is
true,and I think there is a problem is this statements
for(var i=0; i < this.popups.length; i++) {
this.removePopup(this.popups[i]);
}
and the removePopup method use array.splice(i,1) to cut off the
array,there might have some elements in this array never get
removed,like the element in index 1 will not be removed because it be
shift to index 0 after first loop.Am I correct?
_______________________________________________
Dev mailing list
[email protected]
http://openlayers.org/mailman/listinfo/dev