I have an OpenLayers map with two vector layers. Both of them contain marker.

With help of the following link, I managed to get a select-handler on both layers. http://openlayers.org/dev/examples/select-feature-multilayer.html

This select-handler fires the same function for marker on both layers. But how can I differ, on which layer the selected is positioned?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

In OpenLayers,handler event triggers on single viewport or map canvas.Therefore,you should attach event (feature selection and feature unselection) on each layer.If you follow the code,in example page,it is so clear that they use the same event but different places where you may alter your own code.

vectors1.events.on({
            "featureselected": function(e) {
                showStatus("selected feature "+e.feature.id+" on Vector Layer 1");
            },
            "featureunselected": function(e) {
                showStatus("unselected feature "+e.feature.id+" on Vector Layer 1");
            }
        });

for vectors2 the same event is attached.If you're looking for which layer the feature is placed as above code says so.

link|improve this answer
Exactly what I was searching for. Thanks you a lot! Do you know, is this documented somewhere in the OpenLayers documentation? – madc Oct 20 '11 at 14:37
1  
indeed,check dev.openlayers.org/docs/files/OpenLayers/… – Myra Oct 20 '11 at 18:31
thanks for your help. – madc Oct 21 '11 at 13:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.