Take a look at these 5 lines from your map file:&nbsp;  <br><br>&nbsp;&nbsp;&nbsp;&nbsp; EXTENT -8000000 300000 5000000 1500000<br>
 &nbsp; &nbsp;&nbsp; UNITS METERS<br>
 &nbsp; &nbsp;&nbsp; PROJECTION<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;proj=latlong&quot; &quot;lat_1=32&quot; &quot;lat_2=44&quot; &quot;lat_0=38&quot; &quot;lon_0=-100&quot; &quot;x_0=0&quot; &quot;y_0=0&quot; &quot;ellps=GRS80&quot; &quot;datum=NAD83&quot;<br>
 &nbsp; &nbsp;&nbsp; END<br><br>You are telling MapServer that your image extent is 13 million degrees in the x direction.&nbsp; <br><br>Your EXTENT and UNITS need to be of the same units as your output projection.&nbsp; <br><br>Try UNITS &quot;dd&quot; and convert your extent to degrees.<br>
<br>David.<br><br><div class="gmail_quote">On Tue, Apr 15, 2008 at 3:06 PM,  &lt;<a href="mailto:ptang83@yahoo.com">ptang83@yahoo.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
I downloaded a demo which display a nice map through mapserver. The image is like this.<br>
<a href="http://www.mobilegeographics.com/mapserver/usa1.phtml" target="_blank">http://www.mobilegeographics.com/mapserver/usa1.phtml</a><br>
<br>
The image is big and nice.<br>
<br>
When I changed it to display throught openlayers. The openlayer map only display a blank windows with all controls. If I change the &quot;proj=lcc&quot; to &quot;proj=latlong&quot; , then it display a map but the size of the map is very small and only occupied the upper lift corner of the openlayers div. Is there any way to make &nbsp;display fit the windows?<br>

<br>
Would like to take any suggestion. Thanks in advance!<br>
<br>
=========<br>
usa1.html<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>
 &nbsp;&lt;head&gt;<br>
&nbsp;// &nbsp;&lt;title&gt;My Test MapServer Layer&lt;/title&gt;<br>
 &nbsp; &nbsp;&lt;style type=&quot;text/css&quot;&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;#map {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;width: 800px;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;height: 500px;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;border: 1px solid black;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp;&lt;/style&gt;<br>
<br>
 &nbsp; &nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;<a href="http://clients.multimap.com/API/maps/1.1/metacarta_04" target="_blank">http://clients.multimap.com/API/maps/1.1/metacarta_04</a>&quot;&gt;&lt;/script&gt;<br>

<br>
 &nbsp; &nbsp;&lt;script src=&quot;<a href="http://openlayers.org/dev/lib/OpenLayers.js" target="_blank">http://openlayers.org/dev/lib/OpenLayers.js</a>&quot;&gt;&lt;/script&gt;<br>
 &nbsp; &nbsp;&lt;script type=&quot;text/javascript&quot;&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;&lt;!--<br>
 &nbsp; &nbsp; &nbsp; &nbsp;var map, layer;<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;function init(){<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;map = new OpenLayers.Map( &#39;map&#39; );<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;layer = new OpenLayers.Layer.MapServer( &quot;OpenLayers WMS&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;<a href="http://localhost/cgi-bin/mapserv.exe" target="_blank">http://localhost/cgi-bin/mapserv.exe</a>&quot;,<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {map: &#39;C:/Program Files/ms4w/Apache/htdocs/MSrecipes/usa1.map&#39;} );<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // {map: &#39;C:/Program Files/ms4w/Apache/htdocs/usa1.map&#39;} );<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;map.addLayer(layer);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;map.zoomToMaxExtent();<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp;// --&gt;<br>
 &nbsp; &nbsp;&lt;/script&gt;<br>
 &nbsp;&lt;/head&gt;<br>
 &nbsp;&lt;body onload=&quot;init()&quot;&gt;<br>
 &nbsp; &nbsp;&lt;div id=&quot;map&quot;&gt;&lt;/div&gt;<br>
 &nbsp;&lt;/body&gt;<br>
&lt;/html&gt;<br>
<br>
<br>
============<br>
map file<br>
==============<br>
<br>
MAP<br>
 &nbsp; &nbsp;NAME USA1<br>
 &nbsp; &nbsp;STATUS ON<br>
 &nbsp; &nbsp;SIZE 800 500<br>
 &nbsp; &nbsp;IMAGETYPE PNG<br>
 &nbsp; &nbsp;IMAGECOLOR 240 240 240<br>
 &nbsp; &nbsp;SHAPEPATH &quot;C:\oatdir\statesp020.tar&quot;<br>
 &nbsp; &nbsp;EXTENT -8000000 300000 5000000 1500000<br>
 &nbsp; &nbsp;UNITS METERS<br>
 &nbsp; &nbsp;PROJECTION<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;proj=latlong&quot; &quot;lat_1=32&quot; &quot;lat_2=44&quot; &quot;lat_0=38&quot; &quot;lon_0=-100&quot; &quot;x_0=0&quot; &quot;y_0=0&quot; &quot;ellps=GRS80&quot; &quot;datum=NAD83&quot;<br>
 &nbsp; &nbsp;END<br>
 &nbsp; &nbsp;WEB<br>
 &nbsp; &nbsp; &nbsp; &nbsp;IMAGEPATH &quot;C:\Program Files\ms4w\Apache\htdocs\tmp\&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;IMAGEURL &quot;/tmp/&quot;<br>
 &nbsp; &nbsp;END<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp;LAYER<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NAME &quot;US state boundaries&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;TYPE POLYGON<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;STATUS DEFAULT<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;DATA &#39;C:\oatdir\statesp020.tar\statesp020&#39;<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;PROJECTION<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;proj=latlong&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;ellps=GRS80&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;datum=NAD83&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;END<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;CLASS<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;NAME &quot;US states&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;OUTLINECOLOR 60 60 60<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;COLOR 255 255 0<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;SYMBOL 0<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;END<br>
 &nbsp; &nbsp; &nbsp; &nbsp;END<br>
<br>
<br>
<br>
END<br>
<div class="WgoR0d"><br>
<br>
 &nbsp; &nbsp; &nbsp;____________________________________________________________________________________<br>
Be a better friend, newshound, and<br>
know-it-all with Yahoo! Mobile. &nbsp;Try it now. &nbsp;<a href="http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ" target="_blank">http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ</a><br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@openlayers.org">Users@openlayers.org</a><br>
<a href="http://openlayers.org/mailman/listinfo/users" target="_blank">http://openlayers.org/mailman/listinfo/users</a><br>
</div></blockquote></div><br>