<br><font size=2 face="sans-serif">I got this in the response </font><tt><font size=3>&lt;gml:Box
srsName=&quot;EPSG:900913&quot;&gt;<br>
</font></tt><font size=2 face="sans-serif">which is the same as the map
projection.</font>
<br>
<br><font size=2 face="sans-serif">I forgot to say that even if the feature
is added to the vector layer I get this message in line 724 of OpenLayers.js</font>
<br><font size=3>xmldom.loadXML(text);return xmldom;}),this),function(){return
new DOMParser().parseFromString(text,'text/xml');},function(){var req=new
XMLHttpRequest();req.open(&quot;GET&quot;,&quot;data:&quot;+&quot;text/xml&quot;+&quot;;charset=utf-8,&quot;+encodeURIComponent(text),false);if(req.overrideMimeType){req.overrideMimeType(&quot;text/xml&quot;);}
</font>
<br>
<br><font size=2 face="sans-serif">I click on Continue button and then
the features are added.</font>
<br><font size=2 face="sans-serif">Steve</font>
<br><font size=2 face="sans-serif"><br>
</font><font size=3 color=#0066ff><i>Steve Toutant, M. Sc.</i></font><font size=3><br>
Analyste en géomatique<br>
Secteur environnement<br>
Direction des risques biologiques, environnementaux et occupationnels<br>
Institut national de santé publique du Québec<br>
945, avenue Wolfe<br>
Québec, Qc G1V 5B3 </font>
<p><font size=3>Tél.: (418) 650-5115 #5281<br>
Fax.: (418) 654-3144</font><font size=3 color=blue><u><br>
</u></font><a href=mailto:steve.toutant@inspq.qc.ca><font size=3 color=blue><u>steve.toutant@inspq.qc.ca</u></font></a><font size=3 color=blue><u><br>
</u></font><a href=http://www.inspq.qc.ca/><font size=3 color=blue><u>http://www.inspq.qc.ca</u></font></a>
<p><font size=3>&nbsp; </font>
<p>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td width=40%><font size=1 face="sans-serif"><b>François Van Der Biest
&lt;francois.vanderbiest@camptocamp.com&gt;@openlayers.org</b> </font>
<br><font size=1 face="sans-serif">Envoyé par : users-bounces@openlayers.org</font>
<p><font size=1 face="sans-serif">04/09/2009 10:13 AM</font>
<td width=59%>
<table width=100%>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">A</font></div>
<td><font size=1 face="sans-serif">Steve.Toutant@inspq.qc.ca</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">cc</font></div>
<td><font size=1 face="sans-serif">users@openlayers.org</font>
<tr valign=top>
<td>
<div align=right><font size=1 face="sans-serif">Objet</font></div>
<td><font size=1 face="sans-serif">Re: [OpenLayers-Users] Highlight on
hover</font></table>
<br>
<table>
<tr valign=top>
<td>
<td></table>
<br></table>
<br>
<br>
<br>
<br>
<br><tt><font size=2>Hi Steve.<br>
<br>
A potential reason is that the GML you're receiving does not use the<br>
same SRS as the one of your map.<br>
You may check this using FireBug.<br>
<br>
I know GeoServer does not handle reprojecting features returned by WMS<br>
getFeatureInfo.<br>
<br>
Cheers,<br>
F.<br>
<br>
<br>
On Fri, Sep 4, 2009 at 3:52 PM, &lt;Steve.Toutant@inspq.qc.ca&gt; wrote:<br>
&gt;<br>
&gt; Hello,<br>
&gt; With the code below, a GetFeatureInfo request is succesfully launched
to<br>
&gt; mapserver when I stop moving the mouse. In firebug I see the XML response<br>
&gt; with the msGMLOutput tag.<br>
&gt; I can see that the highlightLayer has feature added to it but I don't
see<br>
&gt; them on the map. Like there is no geometry.<br>
&gt; What could be the reasons for that please? Is there some params missing?<br>
&gt;<br>
&gt; Thanks<br>
&gt; Steve<br>
&gt;<br>
&gt; var highlight_style = { fillColor:'#99CCFF', strokeColor:'#3399FF',<br>
&gt; fillOpacity:0.7 };<br>
&gt; highlightLayer = new OpenLayers.Layer.Vector(&quot;HighlightedFeatures&quot;,<br>
&gt; {displayInLayerSwitcher: false, features:[], isBaseLayer: false,<br>
&gt; visibility:true, style:highlight_style});<br>
&gt;<br>
&gt; infoControls =<br>
&gt; {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;hover:
new OpenLayers.Control.WMSGetFeatureInfo<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ({<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; title: 'Identify
features by clicking',<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; layers: [overlays['national_2006']],<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; hover: true,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; queryVisible:
true<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ,infoFormat:'application/vnd.ogc.gml'<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; })<br>
&gt; }<br>
&gt; // add layers to the map<br>
&gt; addLayersToMap();<br>
&gt;<br>
&gt; for (var i in infoControls)<br>
&gt; {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; infoControls[i].events.register(&quot;getfeatureinfo&quot;,
this, showInfo);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; map.addControl(infoControls[i]);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; infoControls[i].activate();<br>
&gt; }<br>
&gt;<br>
&gt; function showInfo(evt)<br>
&gt; {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; if (evt.features &amp;&amp; evt.features.length)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;highlightLayer.destroyFeatures();<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;highlightLayer.addFeatures(evt.features);<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;highlightLayer.redraw();<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
&gt; }<br>
&gt;<br>
&gt;<br>
&gt; Steve Toutant, M. Sc.<br>
&gt; Analyste en géomatique<br>
&gt; Secteur environnement<br>
&gt; Direction des risques biologiques, environnementaux et occupationnels<br>
&gt; Institut national de santé publique du Québec<br>
&gt; 945, avenue Wolfe<br>
&gt; Québec, Qc G1V 5B3<br>
&gt;<br>
&gt; Tél.: (418) 650-5115 #5281<br>
&gt; Fax.: (418) 654-3144<br>
&gt; steve.toutant@inspq.qc.ca<br>
&gt; http://www.inspq.qc.ca<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Users mailing list<br>
&gt; Users@openlayers.org<br>
&gt; http://openlayers.org/mailman/listinfo/users<br>
&gt;<br>
&gt;<br>
_______________________________________________<br>
Users mailing list<br>
Users@openlayers.org<br>
http://openlayers.org/mailman/listinfo/users<br>
</font></tt>
<br>
<br>
<br>