<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <title>CNA2002 en OpenLayers</title>
 <style type="text/css">
  #map {
    width: 800px;
    height: 600px;
  }
 </style>
 <script src="openlayers/lib/OpenLayers.js"></script>
 <script type="text/javascript">
 
  function init() {
    var map = new OpenLayers.Map( 'map' );
    var layer = new OpenLayers.Layer.WMS( "OpenLayers WMS",
      "http://localhost/cgi-bin/mapserv.exe?map=C:/gismap/demo1.map&version=1.1.0&request=GetMap&layers=cana.shp&srs=EPSG:22183&bbox=3481103.2500000005,6902113.999999999,3650078.000000069,7117608.500000001&format=image/png&width=800&height=1000");
    map.addLayer(layer);
    map.setCenter(new OpenLayers.LonLat(5, 40), 5);
    map.addControl( new OpenLayers.Control.LayerSwitcher() );
  }
 </script>
 </head>
 <body onload="init()">
                <b>CENSO NACIONAL AGROPECUARIO 2002</b>
                
        <div>
          Cultivo de Caña en la Provincia de Tucumán
     </div>
 <div id="map">
 </div>
 </body>
</html>