Search code examples
javascripteventsopenlayersgis

OpenLayers eventListener attribute


I found in an example for OpenLayers this code to register a listener on OpenLayers.Control.SelectFeature

var report = function(e) {
     OpenLayers.Console.log(e.type, e.feature.id);
};

var highlightCtrl = new OpenLayers.Control.SelectFeature(vectors, {
    hover: true,
    highlightOnly: true,
    renderIntent: "temporary",
    eventListeners: {
            beforefeaturehighlighted: report,
            featurehighlighted: report,
            featureunhighlighted: report
    }
});

Now I'm wondering what exactly e is. What type is e and what other attributes besides type and feature doese e have? Where can I find the documentation for this?


Solution

  • you can find other attributes of e by using IE to debug