I'm working with an OpenLayers map utilizing Marker layers, and I need to ensure that the markers overlap correctly, with markers lower on the y-axis appearing above higher markers. I assumed I could do this easily with y-ordering, as shown here:
http://dev.openlayers.org/examples/ordering.html
However, passing in rendererOptions: { yOrdering: true } doesn't seem to be working, and the example shows it being applied to a Vector layer rather than a Marker layer. Will I have to convert my Marker layers to Vector layers in order to get the benefit of y-ordering, or is there another way to make it work?