Hello, this is my first time here on the list after using OpenLayers for a couple of months and only now I've faced a problem I couldn't solve directly from documentation:<div>When I add a Markers Layer and populate it I can capture the marker's events normally and display a popup, for example. But that only works when the Markers Layer is on top, if it the last one added.</div>
<div>My code looks like the following:</div><div><br></div><div><div>marker.events.register("mousedown", this, function(){ /* show popup */ });</div></div><div><br></div><div>I've tried using </div><div>    marker.events.register("mousedown", this, function(){ /* show popup */ }, true);</div>
<div>and</div><div>    marker.events.register("mousedown", this, function(){ /* show popup */ }, {'extension':true});</div><div>but I'm not sure that's the problem.</div><div><br></div><div>Whenever I add another layer, even if it isn't overlapping the markers, I can't listen to their events.</div>
<div>How should I proceed to capture these events when the layer isn't on top? Is using "marker.events.register()" the right way? Or maybe there's a control for that? I'm kind of lost, so any help would be very appreciated.</div>
<div><br></div><div>Thanks in advance and sorry for the English.</div><div>Claudio V.</div>