Thanks cdobell,<br>It worked :)<br><br><div class="gmail_quote">On Fri, May 21, 2010 at 12:22 AM, cdobell [via OSGeo.org] <span dir="ltr">&lt;<a href="/user/SendEmail.jtp?type=node&node=5082565&i=0" target="_top" rel="nofollow">[hidden email]</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

First, make sure that you&#39;re adding your google layer to map.  In one of your examples, you only added the wms layer.
<br><br>Second, since google maps are EPSG:900913, you&#39;ll need to pass it meters instead of a lon,lat.  Set up a point or bounds you know (lon,lat) and then transform that point/bounds to the google projection.
<br><br>// I saw a reference to this lat,lon coordinate: 63.259591,-144.667969
<br><br>var GEOGRAPHIC_PROJECTION = new OpenLayers.Projection(&quot;EPSG:4326&quot;); // stnd LAT,LON via WGS84 datum
<br>var MERCATOR_PROJECTION =   new OpenLayers.Projection(&quot;EPSG:900913&quot;); // &#39;900913&#39; == &#39;GOOGLE&#39; projection
<br>var IndiaCenterPointGeographic = new OpenLayers.LonLat(-144.667969,63.259591); // lon,lat
<br>var IndiaCenterPointMercator = IndiaCenterPointGeographic.transform(GEOGRAPHIC_PROJECTION,MERCATOR_PROJECTION);
<br>var startZoomLevel = 5;
<br>//....
<br>//set up map and layers...
<br>//....
<br>map.setCenter(IndiaCenterPointMercator,startZoomLevel);
<br>
<br><br>
<hr color="#cccccc" noshade size="1">
<div style="color: rgb(102, 102, 102); font: 11px tahoma,geneva,helvetica,arial,sans-serif;">
View message @ <a href="http://osgeo-org.1803224.n2.nabble.com/How-to-display-a-specific-place-tp5063850p5081089.html" target="_blank" rel="nofollow" link="external">http://osgeo-org.1803224.n2.nabble.com/How-to-display-a-specific-place-tp5063850p5081089.html</a>

<br><div class="im">To unsubscribe from How to display a specific place ?, <a target="_blank" rel="nofollow" link="external">click here</a>.
</div></div>
<br>
</blockquote></div><br>

<br><hr align="left" width="300">
View this message in context: <a href="http://osgeo-org.1803224.n2.nabble.com/How-to-display-a-specific-place-tp5063850p5082565.html">Re: How to display a specific place ?</a><br>
Sent from the <a href="http://osgeo-org.1803224.n2.nabble.com/OpenLayers-Users-f1822463.html">OpenLayers Users mailing list archive</a> at Nabble.com.<br>