Excelente, <br> Gracias por alimentar el post, y que todos puedan aprovechar.<br><br>Saludos<br>Laurent<br><br><div class="gmail_quote">2011/4/8 florencia.bujan <span dir="ltr">&lt;<a href="mailto:florita026@gmail.com">florita026@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Buenos días,<br>
<br>
Te cuento lo que yo hice para que me funcione.<br>
Es una capa de polígonos llamada &quot;Departamentos&quot; que al hacer click sobre un<br>
polígono se muestran datos de la base de datos de dicha tabla.<br>
Te paso el código de cada parte. El contenido del popup lo debes hacer en un<br>
archivo aparte html que en mi caso se encuentra en la carpeta &quot;popups&quot; en el<br>
archivo &quot;departamentos.html&quot;.<br>
<br>
*ARCHIVO .MAP*<br>
<div class="im"># Capa de Departamentos<br>
LAYER<br>
CONNECTIONTYPE postgis<br>
NAME &quot;Departamentos&quot;<br>
 STATUS on<br>
</div>LABELITEM &quot;nombre&quot;<br>
LABELMAXSCALE 2000000<br>
<div class="im">PROCESSING &quot;LABEL_NO_CLIP=ON&quot;<br>
</div>PROCESSING &quot;CLOSE_CONNECTION=DEFER&quot;<br>
 CONNECTION &quot;user=xx password=xx dbname=xx host=xx&quot;<br>
DATA &quot;the_geom FROM departamentos as departamentos USING UNIQUE GID USING<br>
<div class="im">SRID=-1&quot;<br>
DUMP True<br>
TYPE POLYGON<br>
      METADATA<br>
</div><div class="im">        &quot;wms_title&quot;     &quot;Departamentos&quot;<br>
        &quot;wms_srs&quot;             &quot;EPSG:4326&quot;<br>
        &quot;wms_name&quot;             &quot;Departamentos&quot;<br>
        &quot;wms_server_version&quot;   &quot;1.1.1&quot;<br>
</div>        &quot;wms_format&quot;           &quot;image/png&quot;<br>
<div class="im">        &quot;wms_include_items&quot; &quot;all&quot;<br>
    END<br>
</div>    TEMPLATE &quot;popups/departamentos.html&quot;<br>
<div class="im"> CLASS<br>
STYLE<br>
COLOR 0 99 0<br>
OUTLINECOLOR 0 0 0<br>
END<br>
END<br>
END<br>
<br>
</div>*ARCHIVO Departamentos.html (popup): En este archivo ponés entre paréntesis<br>
rectos los nombres de las columnas de tu tabla en la base de datos*<br>
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;<br>
<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>&quot;&gt;<br>
&lt;html xmlns=&quot;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;<br>
&lt;head&gt;<br>
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;<br>
&lt;/head&gt;<br>
&lt;body&gt;<br>
&lt;table border=1 cellspacing=0 cellpadding=2 align=center width=80%&gt;<br>
&lt;tr&gt;<br>
&lt;td&gt;<br>
&lt;font size=1&gt;&lt;b&gt;Nombre: &lt;/b&gt;&lt;/font&gt;<br>
&lt;/td&gt;<br>
&lt;td&gt;<br>
&lt;font size=1&gt;[nombre]&lt;/font&gt;<br>
&lt;/td&gt;<br>
&lt;/tr&gt;<br>
&lt;tr&gt;<br>
&lt;td&gt;<br>
&lt;font size=1&gt;&lt;b&gt;Cabecera: &lt;/b&gt;&lt;/font&gt;<br>
&lt;/td&gt;<br>
&lt;td&gt;<br>
&lt;font size=1&gt;[cabecera]&lt;/font&gt;<br>
&lt;/td&gt;<br>
&lt;/tr&gt;<br>
&lt;/table&gt;<br>
&lt;/body&gt;<br>
&lt;/html&gt;<br>
<br>
*Archivo OpenLayers:*<br>
<div class="im">var layerRegional = new OpenLayers.Layer.WMS(&#39;Departamentos&#39;,<br>
</div>&#39;<a href="http://localhost/cgi-bin/mapserv.exe?map=../htdocs/GISManager/mapa.map" target="_blank">http://localhost/cgi-bin/mapserv.exe?map=../htdocs/GISManager/mapa.map</a>&quot;,<br>
<div class="im">                {layers:&#39;Departamentos&#39;,  format: &#39;image/png&#39;,<br>
</div>transparent:true, gutter: 15},<br>
                {opacity:0.6, displayInLayerSwitcher: false }<br>
        );<br>
map.addLayer(layerRegional);<br>
<div class="im">info = new OpenLayers.Control.WMSGetFeatureInfo({<br>
            url: &#39;<br>
</div><a href="http://localhost/cgi-bin/mapserv.exe?map=../htdocs/GISManager/mapa.map" target="_blank">http://localhost/cgi-bin/mapserv.exe?map=../htdocs/GISManager/mapa.map</a>&quot;,<br>
            title: &#39;Click&#39;,<br>
<div class="im">            layers: [layerRegional],<br>
            queryVisible: true,<br>
            eventListeners: {<br>
                getfeatureinfo: function(event) {<br>
                    map.addPopup(new OpenLayers.Popup.FramedCloud(<br>
                        &quot;chicken&quot;,<br>
                        map.getLonLatFromPixel(event.xy),<br>
                        null,<br>
                        event.text,<br>
                        null,<br>
                        true<br>
                    ));<br>
                }<br>
            }<br>
        });<br>
map.addControl(info);<br>
info.activate();<br>
<br>
<br>
</div>Eso sería todo.<br>
Cualquier consulta que tengas no dudes en preguntarme.<br>
<br>
Saludos!<br>
Florencia<br>
<br>
El 7 de abril de 2011 16:53, webmapping [via OSGeo.org] &lt;<br>
<a href="mailto:ml-node%2B6251341-1926894468-295788@n2.nabble.com">ml-node+6251341-1926894468-295788@n2.nabble.com</a>&gt; escribió:<br>
<br>
&gt; Hola<br>
&gt;<br>
&gt; Estoy realizando tus mismos pasos con el popup de openlayers, para mi<br>
&gt; visor, pero al momento de dar click en un punto me arroja es el contenido<br>
&gt; del archivo proxy.cgi, quisiera saber si algo anda mal, o serán problemas de<br>
&gt; configuración, cualquier ayuda, opinión se los agradeceré....<br>
&gt;<br>
&gt; De antemano muchas gracias<br>
&gt;<br>
&gt; ------------------------------<br>
&gt;  If you reply to this email, your message will be added to the discussion<br>
&gt; below:<br>
&gt;<br>
&gt; <a href="http://osgeo-org.1803224.n2.nabble.com/Problema-con-popup-en-capa-MapServer-tp5655608p6251341.html" target="_blank">http://osgeo-org.1803224.n2.nabble.com/Problema-con-popup-en-capa-MapServer-tp5655608p6251341.html</a><br>

&gt;  To unsubscribe from Problema con popup en capa MapServer, click here&lt;<a href="http://osgeo-org.1803224.n2.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&amp;node=5655608&amp;code=Zmxvcml0YTAyNkBnbWFpbC5jb218NTY1NTYwOHwtMTA5MjA5NTEwMA==" target="_blank">http://osgeo-org.1803224.n2.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&amp;node=5655608&amp;code=Zmxvcml0YTAyNkBnbWFpbC5jb218NTY1NTYwOHwtMTA5MjA5NTEwMA==</a>&gt;.<br>

&gt;<br>
&gt;<br>
<br>
<br>
--<br>
View this message in context: <a href="http://osgeo-org.1803224.n2.nabble.com/Problema-con-popup-en-capa-MapServer-tp5655608p6253342.html" target="_blank">http://osgeo-org.1803224.n2.nabble.com/Problema-con-popup-en-capa-MapServer-tp5655608p6253342.html</a><br>

<div class="im">Sent from the OSGeo Spanish Local Chapter mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Spanish mailing list<br>
</div><div class="im"><a href="http://lists.osgeo.org/mailman/listinfo/spanish" target="_blank">http://lists.osgeo.org/mailman/listinfo/spanish</a><br>
</div><a href="http://es.osgeo.org" target="_blank">http://es.osgeo.org</a><br>
<a href="http://twitter.com/osgeoes" target="_blank">http://twitter.com/osgeoes</a><br>
</blockquote></div><br>