Hi,<br>I&#39;m still trying to use geoscopio layer over google maps with 
spherical Mercator.<br>The best result I&#39;ve obtained is this:<br><a href="http://img513.imageshack.us/img513/2284/geoscopiovsgoogle.png" target="_blank">http://img513.imageshack.us/img513/2284/geoscopiovsgoogle.png</a><br>

<br>I&#39;m using the following code, someone is able to make this work?<br><br><br>&lt;html
 xmlns=&quot;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&quot;&gt;<br> 
 &lt;head&gt;<br>    &lt;title&gt;OpenLayers Google Layer 
Example&lt;/title&gt;<br>
    &lt;link rel=&quot;stylesheet&quot; href=&quot;./theme/default/style.<div id=":zb" class="ii gt">css&quot; 
type=&quot;text/css&quot; /&gt;<br>    &lt;link rel=&quot;stylesheet&quot; 
href=&quot;./theme/default/google.css&quot; type=&quot;text/css&quot; /&gt;<br>
    &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; type=&quot;text/css&quot; /&gt;<br>   
 &lt;!-- this gmaps key generated for <a href="http://openlayers.org/dev/" target="_blank">http://openlayers.org/dev/</a>
 --&gt;<br>
    &lt;script src=&#39;<a href="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAjpkAC9ePGem0lIq5XcMiuhR_wWLPFku8Ix9i2SXYRVK3e45q1BQUd_beF8dtzKET_EteAjPdGDwqpQ" target="_blank">http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAjpkAC9ePGem0lIq5XcMiuhR_wWLPFku8Ix9i2SXYRVK3e45q1BQUd_beF8dtzKET_EteAjPdGDwqpQ</a>&#39;&gt;&lt;/script&gt;<br>

    &lt;script src=&quot;./lib/OpenLayers.js&quot;&gt;&lt;/script&gt;<br>    
&lt;script type=&quot;text/javascript&quot;&gt;<br>        var map;<br>        
function init() {<br>        var options1 = {<br>        maxExtent: new 
OpenLayers.Bounds(-20037508.34, -20037508.34,<br>
                                                 20037508.34, 
20037508.34)<br>        }<br>            map = new OpenLayers.Map(&#39;map&#39;,
 options1);<br>            map.addControl(new OpenLayers.Control.LayerSwitcher());<br>
            var gmap = new OpenLayers.Layer.Google(<br>                
&quot;Google Streets&quot;, // the default<br>                {numZoomLevels: 20, 
sphericalMercator:true}<br>            );<br>           <br>            
var wms = new OpenLayers.Layer.WMS(&quot;Comuni della Toscana&quot;,<br>
                                   &quot;<a href="http://web.rete.toscana.it/sgrwms/com.rt.wms.RTmap?servicename=_rt_wms&amp;version=1.1.1&amp;SRS=EPSG:3003" target="_blank">http://web.rete.toscana.it/sgrwms/com.rt.wms.RTmap?servicename=_rt_wms&amp;version=1.1.1&amp;SRS=EPSG:3003</a>&quot;,<br>

                                   {<br>                                      
 displayProjection: new OpenLayers.Projection(&quot;EPSG:4326&quot;),<br>                                      
 isBaseLayer: false,<br>                                       
layers: &#39;idcomuni&#39;,<br>
                                       transparent: &#39;true&#39;,<br>                                      
 maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34,<br>                                                    
 20037508.34, 20037508.34)<br>
                                   });<br><br>            
map.addLayers([gmap, wms]);<br><br>            map.setCenter(new 
OpenLayers.LonLat(1330615.7882031,5361598.9112891), 5);<br>         
  <br>        }<br><br>&lt;/script&gt;<br>
  &lt;/head&gt;<br>  &lt;body onload=&quot;init()&quot;&gt;<br>    &lt;div 
id=&quot;map&quot; class=&quot;smallmap&quot;&gt;&lt;/div&gt;<br>  &lt;/body&gt;<br>&lt;/html&gt;</div>