All,

Using OL 2.5, I would like to write a Control inherit from
OpenLayers.Control and register the dblclick but I can not get it work. When
I double-click the map the callback method for dblclick never get called. So
just wonder if I did anything wrong. Here is initialize code of the control

initialize: function(layer, options) {
        OpenLayers.Control.prototype.initialize.apply(this, [options]);
        this.handler = new OpenLayers.Handler.Point(    
                this,
            {dblclick: this.reverseGeocode}
        );
       this.handler.activate();
} 

Thanks
-- 
View this message in context: 
http://www.nabble.com/Can-not-register-dblclick-in-a-point-handler-tp16764014p16764014.html
Sent from the OpenLayers Users mailing list archive at Nabble.com.

_______________________________________________
Users mailing list
[email protected]
http://openlayers.org/mailman/listinfo/users

Reply via email to