<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1528" name=GENERATOR></HEAD>
<BODY>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=031564023-16112007>Hi,</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=031564023-16112007></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=031564023-16112007>if you want to use SphericalMercator with Google Maps, 
then you can only use the resolutions of Google Maps. They deliver their maps 
only in this resolutions.</SPAN></FONT></DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=031564023-16112007></SPAN></FONT>&nbsp;</DIV>
<DIV dir=ltr align=left><FONT face=Arial color=#0000ff size=2><SPAN 
class=031564023-16112007></SPAN></FONT><FONT face=Arial color=#0000ff 
size=2><SPAN class=031564023-16112007><!-- Converted from text/plain format -->
<P><FONT size=2>Mit freundlichen Grüssen<BR><BR>Arnd Wippermann<BR><A 
href="http://gis.ibbeck.de/ginfo/">http://gis.ibbeck.de/ginfo/</A><BR><BR></FONT></P></SPAN></FONT></DIV>
<DIV dir=ltr align=left>
<HR tabIndex=-1>
</DIV>
<DIV dir=ltr align=left><FONT face=Tahoma size=2><B>Von:</B> 
users-bounces@openlayers.org [mailto:users-bounces@openlayers.org] <B>Im Auftrag 
von </B>Linda Rawson<BR><B>Gesendet:</B> Freitag, 16. November 2007 
15:18<BR><B>An:</B> users@openlayers.org<BR><B>Betreff:</B> [OpenLayers-Users] 
Changing Resolution in Spherical Mercator<BR></FONT><BR></DIV>
<DIV></DIV>
<DIV>I am using the following to define my map:</DIV>
<DIV>&nbsp;</DIV>
<DIV>options = {<BR>&nbsp;&nbsp;&nbsp; projection: 
"EPSG:900913",<BR>&nbsp;&nbsp;&nbsp; units: "m",<BR>&nbsp;&nbsp;&nbsp; 
maxResolution: 156543.0339,<BR>&nbsp;&nbsp;&nbsp; numZoomLevels: 
18,<BR>&nbsp;&nbsp;&nbsp; maxExtent: new OpenLayers.Bounds(-20037508, 
-20037508,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
20037508, 20037508.34)<BR>};</DIV>
<DIV><FONT size=2></FONT>&nbsp;</DIV>
<DIV><FONT size=2>map = </FONT><FONT color=#0000ff size=2>new</FONT><FONT 
size=2> OpenLayers.Map(</FONT><FONT color=#800000 size=2>'map'</FONT><FONT 
size=2>,options);</FONT></DIV>
<DIV>
<P><FONT size=2>Then my layer:</FONT></P>
<P><FONT size=2>var sat = new 
OpenLayers.Layer.Google(<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
"Google",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
{'sphericalMercator': true}<BR>&nbsp;&nbsp;&nbsp; );</FONT></P>
<P><FONT size=2>What the sphericalMercator true does is run the </FONT></P>
<P>initMercatorParameters: function() 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // set up properties for 
Mercator - assume EPSG:900913<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
this.RESOLUTIONS = [];<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var 
maxResolution = 156543.0339;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
for(var zoom=0; zoom&lt;= this.MAX_ZOOM_LEVEL; ++zoom) 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
this.RESOLUTIONS[zoom] = maxResolution / Math.pow(2, 
zoom);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this.units = 
"m";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; this.projection = 
"EPSG:900913";<BR>&nbsp;&nbsp;&nbsp; }, </P>
<P>The maxResolution of 156543.0339 is based on (20037508.34 + 20037508) / 
256.</P>
<P>I need a different Resolution but I still want the forward and inverse 
mercator functions to work.&nbsp; Where are all the different places to change 
the resolution?&nbsp; I need it based on a tile that is not 256 in size.&nbsp; I 
have tried changing this in initMercatorParameters, the map, but It still does 
not seem to play nice. </P>
<P>Thanks,</P>
<P>Linda Rawson</P></DIV></BODY></HTML>