Hello,

Look with firebug the tiles url when hovering. There have wrong url

Not sure it will solve everything but

      server = "http://"; + location.host + "/";

must be something like

      server = "http://www.catastroloscabos.gob.mx/";

and because of this change all case like

   mlayer = new OpenLayers.Layer.MapServer("Manzanas",
     server + "www.catastroloscabos.gob.mx/cgi-bin/mapserv.fcgi?", {
       map: '/home/juribe/webcatastro/catastro.map',
       layers: 'm',
       map_imagetype: 'png'}, {singleTile: true, isBaseLayer: false});
   map.addLayer(mlayer);

will look

   mlayer = new OpenLayers.Layer.MapServer("Manzanas",
     server + "cgi-bin/mapserv.fcgi", {
       map: '/home/juribe/webcatastro/catastro.map',
       layers: 'm',
       map_imagetype: 'png'}, {singleTile: true, isBaseLayer: false});
   map.addLayer(mlayer);

If you have others issues, the best is to post now to the users-openlayers
list
http://lists.osgeo.org/mailman/listinfo/openlayers-users because your
questions for the moment seems to be more related to client side and not to
mapserver.

Regards

ThomasG
GIS specialist
_______________________________________________
mapserver-users mailing list
mapserver-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/mapserver-users

Reply via email to