I define the projection like and option and I have the same problem.<br>Thanks<br><br><div class="gmail_quote">2008/6/25 Eric Lemoine &lt;<a href="mailto:eric.c2c@gmail.com">eric.c2c@gmail.com</a>&gt;:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Wed, Jun 25, 2008 at 3:29 PM, David Martinez Morata<br>
&lt;<a href="mailto:damarmo@gmail.com">damarmo@gmail.com</a>&gt; wrote:<br>
&gt; Thanks for your answeres! :)<br>
&gt; but now in the same point with gml features changing coordinates in the map.<br>
&gt;<br>
&gt; In options for the mep object I define this projections:<br>
&gt;<br>
&gt; var options = {numZoomLevels: 20,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;projection: new OpenLayers.Projection(&quot;EPSG:900913&quot;),<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;displayProjection: new OpenLayers.Projection(&quot;EPSG:4623&quot;)};<br>
&gt;<br>
&gt; and for my GML layer i try with:<br>
&gt;<br>
&gt; map.addLayer(new OpenLayers.Layer.GML(&quot;GML&quot;,<br>
&gt; &nbsp; &nbsp; &quot;<a href="http://10.192.160.133/OpenLayers/ngo9_wgs84_01meu_cables_lille32.gml" target="_blank">http://10.192.160.133/OpenLayers/ngo9_wgs84_01meu_cables_lille32.gml</a>&quot;,<br>
&gt; &nbsp; &nbsp; &nbsp;{format: OpenLayers.Format.GML,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp;formatOptions: {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; extractStyles: true,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;extractAttributes: true}<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
&gt; &nbsp; &nbsp; &nbsp; )<br>
&gt; &nbsp;);<br>
&gt;<br>
&gt; And defining the external and internal projection and alwais the same<br>
&gt; problem...my layer in the middle of Atlantic ocean, when I zoom to a<br>
&gt; village, the error its minimal, but if I pam to the map the layer chages<br>
&gt; location!!!<br>
&gt; Any sugestion to fix it?<br>
<br>
</div>Christopher told you to pass a &quot;projection&quot; option to your GML layer<br>
constructor:<br>
<div class="Ih2E3d"><br>
map.addLayer(new OpenLayers.Layer.GML(&quot;GML&quot;,<br>
 &nbsp; &nbsp;&quot;<a href="http://10.192.160.133/OpenLayers/ngo9_wgs84_01meu_cables_lille32.gml" target="_blank">http://10.192.160.133/OpenLayers/ngo9_wgs84_01meu_cables_lille32.gml</a>&quot;,<br>
 &nbsp; &nbsp; {format: OpenLayers.Format.GML,<br>
 &nbsp; &nbsp; &nbsp; formatOptions: {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;extractStyles: true,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; extractAttributes: true}<br>
</div> &nbsp; &nbsp; &nbsp; &nbsp;},<br>
 &nbsp; &nbsp; &nbsp; &nbsp;projection: new OpenLayers.Projection(&#39;EPSG:4326&#39;)<br>
 &nbsp; &nbsp; &nbsp;)<br>
&nbsp;);<br>
<br>
Have you tried that?<br>
<br>
--<br>
<font color="#888888">Eric<br>
</font></blockquote></div><br>