[GIS] How to overlay roads layer on top of all layers in OpenLayers

layersopenlayers-2

I want to put roads layer (from any source, please recommend some..) on top of my KML polygons and base layer:

baseLayer = new OpenLayers.Layer.WMS("OpenLayers WMS", "http://labs.metacarta.com/wms/vmap0", {layers:"basic"});
            map.addLayer(baseLayer);

Is that possible?

Best Answer

You can use setLayerIndex and raiseLayer.

Here are some good examples.