I&#39;m using a simple map in geographic coordinates and with global extent. My map is configured to be 800x500px both in MapServer and in the html page. So 360 degrees / 800px = maxResolution of 0.45 correct? Following the TC readme and setting the maxResolution and extent for the layer in both OL and TC gets close, but the map lat/lon is incorrect. The map lon ranges from -180 to 180 but the lat ranges from -112 to 112, the top of the map ends in the southern part of Greenland, the right edge of the map ends at Thailand, and there are four pink tiles along the bottom of the map. My configuration is: <br>
<br>OL:<br>var basc = new OpenLayers.Layer.WMS(&quot;Basic&quot;,tcServers,{layers:&#39;basic&#39;,maxExtent:new OpenLayers.Bounds(-180,-90,180,90),maxResolution:0.45});<br>var options = {controls:[], maxExtent:new OpenLayers.Bounds(-180, -90, 180, 90), maxResolution:0.45, restrictedExtent:new OpenLayers.Bounds(-180, -90, 180, 90)}<br>
var map = new OpenLayers.Map(&#39;map&#39;, options);<br><br>TC:<br>[basic]<br>type=WMS<br>url=<a href="http://host/cgi-bin/mapserv?map=/maps/WMS.map&amp;">http://host/cgi-bin/mapserv?map=/maps/WMS.map&amp;</a><br>layers=worldCountriesPolys<br>
bbox=-180,-90,180,90<br>maxResolution=0.45<br><br>I&#39;m not clear as to why the map is &#39;shifted&#39; and with incorrect latitudes? Thank you for any insight.<br>