hi all,<br><br>how do you add an overlay layer to openlayers? i have 7 ESRI shapefiles (POINT) that i want to display. So far i only get examples on google map layers, but i don&#39;t see examples on how to add more than 1 non-base layers in a shapefile format. Below is my simple code:<br>
<br>&lt;html&gt;<br>&lt;head&gt;<br>  &lt;title&gt;OpenLayers Example&lt;/title&gt;<br>    &lt;script src=&quot;<a href="http://openlayers.org/api/OpenLayers.js">http://openlayers.org/api/OpenLayers.js</a>&quot;&gt;&lt;/script&gt;<br>
    &lt;/head&gt;<br>    &lt;body&gt;<br>      &lt;div style=&quot;width:100%; height:100%&quot; id=&quot;map&quot;&gt;&lt;/div&gt;<br>      &lt;script defer=&quot;defer&quot; type=&quot;text/javascript&quot;&gt;<br>        var map = new OpenLayers.Map(&#39;map&#39;);<br>
        var wms = new OpenLayers.Layer.WMS( &quot;Background Layer&quot;,<br>            &quot;<a href="http://localhost/cgi-bin/mapserv.exe">http://localhost/cgi-bin/mapserv.exe</a>&quot;, {map: &#39;C:\ms4w\Skripsi\coba.map&#39;},<br>
            {isBaseLayer: true} );<br>        map.addLayer(wms);<br>        map.zoomToMaxExtent();<br>      &lt;/script&gt;<br><br>&lt;/body&gt;<br>&lt;/html&gt;<br><br><br><br>Cheers,<br>Melvin<br>