Hi,<br>I'm still trying to use geoscopio layer over google maps with
spherical Mercator.<br>The best result I'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'm using the following code, someone is able to make this work?<br><br><br><html
xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>"><br>
<head><br> <title>OpenLayers Google Layer
Example</title><br>
<link rel="stylesheet" href="./theme/default/style.<div id=":zb" class="ii gt">css"
type="text/css" /><br> <link rel="stylesheet"
href="./theme/default/google.css" type="text/css" /><br>
<link rel="stylesheet" href="style.css" type="text/css" /><br>
<!-- this gmaps key generated for <a href="http://openlayers.org/dev/" target="_blank">http://openlayers.org/dev/</a>
--><br>
<script src='<a href="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAjpkAC9ePGem0lIq5XcMiuhR_wWLPFku8Ix9i2SXYRVK3e45q1BQUd_beF8dtzKET_EteAjPdGDwqpQ" target="_blank">http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAjpkAC9ePGem0lIq5XcMiuhR_wWLPFku8Ix9i2SXYRVK3e45q1BQUd_beF8dtzKET_EteAjPdGDwqpQ</a>'></script><br>
<script src="./lib/OpenLayers.js"></script><br>
<script type="text/javascript"><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('map',
options1);<br> map.addControl(new OpenLayers.Control.LayerSwitcher());<br>
var gmap = new OpenLayers.Layer.Google(<br>
"Google Streets", // the default<br> {numZoomLevels: 20,
sphericalMercator:true}<br> );<br> <br>
var wms = new OpenLayers.Layer.WMS("Comuni della Toscana",<br>
"<a href="http://web.rete.toscana.it/sgrwms/com.rt.wms.RTmap?servicename=_rt_wms&version=1.1.1&SRS=EPSG:3003" target="_blank">http://web.rete.toscana.it/sgrwms/com.rt.wms.RTmap?servicename=_rt_wms&version=1.1.1&SRS=EPSG:3003</a>",<br>
{<br>
displayProjection: new OpenLayers.Projection("EPSG:4326"),<br>
isBaseLayer: false,<br>
layers: 'idcomuni',<br>
transparent: 'true',<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></script><br>
</head><br> <body onload="init()"><br> <div
id="map" class="smallmap"></div><br> </body><br></html></div>