I am trying to draw a freeform polygon in openlayers using the following code:
drawPolygon = new OpenLayers.Control.DrawFeature(layer, OpenLayers.Handler.Polygon, {eventListeners:{"featureadded": newPolygonAdded}});
However, I am having a problem where the polygon won't 'finish' drawing. To clarify, I mean that usually when you double click a vertex, the polygon finishes drawing. With this code however, double clicking has no effect. Please let me know if I am missing some crucial line that tells the handler we are 'done' drawing the polygon! (I haven't seemed to find any such line in examples, and the code was working fine before when I was simply trying to draw a regular polygon instead of freeform). Thank you!