Hello.<br>I have a problem with geocoding.<br><br>I have a function to do it, but the problem its the result. I geocode and the result it&#39;s in EPSG:4326 projection but mi map it&#39;s in EPSG:900913. I try to put the transform function of OpenLayers.LonLat object but I&#39;m doing somthing wrong.<br>
My function it&#39;s:<br><br><br>&nbsp;function showAddress(address) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var geocoder = new GClientGeocoder();<br>&nbsp;&nbsp;&nbsp;&nbsp; if (geocoder) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; geocoder.getLatLng(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; address,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; function(point) {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!point) {alert(address + &quot; not found&quot;);}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else {map.setCenter(new OpenLayers.LonLat(point.x,point.y),15)}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; }<br><br>Anyone can help me?<br>
<br>Thanks<br>