var gmap = new OpenLayers.Layer.Google(<br>                &quot;Google Streets&quot;, // the default<br>                {&quot;sphericalMercator&quot;: true ,numZoomLevels: 20}<br>            );<br><br>var vector_layer = new OpenLayers.Layer.Vector(&quot;title&quot;, {Projection: new OpenLayers.Projection(&quot;EPSG:4326&quot;)});<br>

<br><div class="gmail_quote">On Mon, Nov 16, 2009 at 1:20 PM, hekuran S. Doli <span dir="ltr">&lt;<a href="mailto:hekuran.doli@logisticsplus-ks.com">hekuran.doli@logisticsplus-ks.com</a>&gt;</span> wrote:<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 style="font-family: Times New Roman; font-size: 12pt; color: rgb(0, 0, 0);">I&#39;m using google map as layer in openlayer. I&#39;m trying to add an point in the map as in example <a href="http://www.logisticsplus-ks.com/testmap/" target="_blank">http://www.logisticsplus-ks.com/testmap/</a>. I&#39;m successfully adding the point in the map but when I move the map the point changes the position. So it does not stay at the coordinates that I give it. <br>

<br>By the way the functions works perfectly with openstreet map, but not with google maps.<br><br>In the following is the code that I&#39;m using:<br><br>&lt;script type=&quot;text/javascript&quot;&gt;<br>        var map;<br>

        <br><br><br>        function init() {<br>            map = new OpenLayers.Map(&#39;map&#39;);<br>            map.addControl(new OpenLayers.Control.LayerSwitcher());<br>            <br>            var gmap = new OpenLayers.Layer.Google(<br>

                &quot;Google Streets&quot;, // the default<br>                {numZoomLevels: 20}<br>            );<br><br>            map.addLayers([gmap]);<br><br>            map.setCenter(new OpenLayers.LonLat(21.159739, 42.656138), 10);<br>

}<br>var featurecollection = {&quot;type&quot;:&quot;Feature&quot;, &quot;id&quot;:&quot;OpenLayers.Feature.Vector_173&quot;, &quot;properties&quot;:{}, &quot;geometry&quot;:{&quot;type&quot;:&quot;Point&quot;, &quot;coordinates&quot;:[21.159739, 42.656138]}};<br>

      function addGeoJson() {<br>                var geojson_format = new OpenLayers.Format.GeoJSON();<br>                var vector_layer = new OpenLayers.Layer.Vector();<br>                map.addLayer(vector_layer);<br>

                //vector_layer.addFeatures(geojson_format.read(featurecollection));<br>                vector_layer.addFeatures(geojson_format.read(featurecollection));<br>        }  <br>    &lt;/script&gt;<br><br>Any help would be appreciable.<br>

Thanks in advance,<br><font color="#888888">Hekuran<br><br><br></font></div></div><br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br>
<a href="http://openlayers.org/mailman/listinfo/users" target="_blank">http://openlayers.org/mailman/listinfo/users</a><br>
<br></blockquote></div><br>