Am 01.07.2010 21:14, schrieb Tim Schaub:
>
> The DrawFeature control's featureAdded callback will not help out here.
>
In the end I just overwrote the Handler's mousedown to store the event
object:
// modify the handler so that the event is saved
OpenLayers.Handler.Point.prototype.mouseup_ov =
OpenLayers.Handler.Point.prototype.mouseup;
OpenLayers.Handler.Point.prototype.mouseup = function(evt) {
if(evt) window.event = evt;
OpenLayers.Handler.Point.prototype.mouseup_ov.apply(this, arguments);
}
Thank you for your help.
Peter
_______________________________________________
Dev mailing list
[email protected]
http://openlayers.org/mailman/listinfo/dev