[OpenLayers-Users] Custom control isn't working properly - how to unregister?

Eric Lemoine eric.c2c at gmail.com
Thu Nov 22 08:17:24 EST 2007


On Nov 21, 2007 2:55 PM, Pascal Ehlert <dadark at dadark.de> wrote:
> Hi Eric!
>
> First of all, thank you for your answer, I haven't expected it anymore.
>
> > You'd also need to declare your control using something like that:
> >
> > OpenLayers.Control.ODAQuery = OpenLayers.Class(OpenLayers.Control, {
> >     initialize: function(options) {
> >         OpenLayers.Control.prototype.initialize.apply(this,
> > [options]);
> >     },
> >
> >     CLASS_NAME: "OpenLayers.Control.ODAQuery"
> > });
>
> Okay, I've done that and it looks much cleaner!
> Unfortunately it is still no applying the ItemsActive appendix to the
> css class name, but I
> fixed it by setting this.active manually in both, my activate and
> deactivate methods.

Your activate() and deactivate() methods should call the parent's methods:

activate: function() {
    if (!OpenLayers.Control.prototype.activate.call(this)) {
        return;
    }
     // your specific code goes here
}

deactivate: function() {
    if (!OpenLayers.Control.prototype.deactivate.call(this)) {
        return;
    }
     // your specific code goes here
}

In this way, you need not yourself set active to false|true.

> Sorry, but this is not working either, it complains that
> this.map.unregister() does not return an object.

Do you pass the appropriate parameters to unregister()?

>
> > Hmm, if you register a callback for the click event only, you should
> > still be able to navigate. Go back to us with examples if that doesn't
> > work.
>
> That's right, but I want my users _not_ to be able to navigate
> anymore when my own control is active.

Sorry for misreading your former post! What you probably can do is
unactivate() the Navigation control.

--
Eric



More information about the Users mailing list