Thanks for your answeres! :)<br>but now in the same point with gml features changing coordinates in the map.<br><br>In options for the mep object I define this projections:<br><br>var options = {numZoomLevels: 20,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; projection: new OpenLayers.Projection(&quot;EPSG:900913&quot;),<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; displayProjection: new OpenLayers.Projection(&quot;EPSG:4623&quot;)};<br><br>and for my GML layer i try with:<br><br>map.addLayer(new OpenLayers.Layer.GML(&quot;GML&quot;,<br>&nbsp;&nbsp;&nbsp; &quot;<a href="http://10.192.160.133/OpenLayers/ngo9_wgs84_01meu_cables_lille32.gml">http://10.192.160.133/OpenLayers/ngo9_wgs84_01meu_cables_lille32.gml</a>&quot;,<br>
&nbsp;&nbsp;&nbsp;&nbsp; {format: OpenLayers.Format.GML,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; formatOptions: {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; extractStyles: true, <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; extractAttributes: true}<br>&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; }<br>&nbsp; &nbsp;&nbsp;&nbsp; )&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;  <br>&nbsp;);<br><br>And defining the external and internal projection and alwais the same problem...my layer in the middle of Atlantic ocean, when I zoom to a village, the error its minimal, but if I pam to the map the layer chages location!!!<br>
Any sugestion to fix it?<br>Thanks<br><br><div class="gmail_quote">2008/6/25 Christopher Schmidt &lt;<a href="mailto:crschmidt@metacarta.com">crschmidt@metacarta.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><div></div><div class="Wj3C7c">On Wed, Jun 25, 2008 at 02:52:19PM +0200, David Martinez Morata wrote:<br>
&gt; Hello,<br>
&gt; I try to put this layer in a map but...<br>
&gt;<br>
&gt; map.addLayer(new OpenLayers.Layer.GML(&quot;GML&quot;,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;<br>
&gt; <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; &nbsp; &nbsp; &nbsp; {format: OpenLayers.Format.KML},<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {formatOptions: {<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; extractAttributes: true,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; internalProjection: new OpenLayers.Projection(&#39;EPSG:900913&#39;),<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; externalProjection: new OpenLayers.Projection(&#39;EPSG:4326&#39;)}<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;)<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;);<br>
&gt; I don&#39;t have a graphical image of the elements!!!<br>
&gt; You have a sugestion?<br>
<br>
</div></div>format and formatOptions are both options to the layer. They belong in<br>
the same hash/argument, not two different ones.<br>
<br>
You don&#39;t have extractStyles in your formatOptions. You may need that to<br>
actually get the styles.<br>
<br>
You don&#39;t need to define internalProjection and externalProjection:<br>
instead, just put in a &#39;projection: new OpenLayers.Projection(4326)&#39;<br>
option.<br>
<br>
Your filename is GML, but your foramt is KML. That seems weird.<br>
<br>
Regards,<br>
<font color="#888888">--<br>
Christopher Schmidt<br>
MetaCarta<br>
</font></blockquote></div><br>