Hello GeoExt users,<br><br>This one&#39;s gotten me totally stumped.  I have some base layers and a few wms overlays.  When my page loads it shows the base layer for a quick second and then goes blank as it loads my overlays.  It stays blank until I click the map, etc.  Then it displays properly.  I&#39;ve Googled all sorts of things concerning this sort of issue and have come up with nothing that gives me a hint as to why this could be.  This never happened to me before until I started using GeoExt to display my map.  Is it something in code I must write for GeoExt or OpenLayers so that this doesnt happen?  It&#39;s driving me crazy!!!<br>
<br>Code:<br><br>//Base Layers<br><br>             var ghyb = new OpenLayers.Layer.Google(<br>                    &quot;Google Hybrid&quot;,<br>                    {type: google.maps.MapTypeId.HYBRID, numZoomLevels: 20}<br>
                );<br><br>            var gmap = new OpenLayers.Layer.Google(<br>                    &quot;Google Streets&quot;, // the default<br>                    {numZoomLevels: 20},{visibility: true} <br>            );<br>
<br>            var osm = new OpenLayers.Layer.OSM();<br><br>//.....<br>....<br>....<br><br>var options = {<br>                    controls: [new OpenLayers.Control.Navigation()],<br>                    maxExtent: new OpenLayers.Bounds(-20037508.34, -20037508.34, 20037508.34, 20037508.34),<br>
                    maxResolution: &quot;auto&quot;,<br>                    projection: new OpenLayers.Projection(&quot;EPSG:900913&quot;),<br>                    units: &#39;m&#39;,<br>                    allOverlays: false<br>
            }<br><br><br>            var map = new OpenLayers.Map(&#39;map&#39;, options);<br>            map.addLayers([gmap, ghyb, osm, all_chn, all_tib, chn_bridges, tib_bridges, chn_countys, tib_countys, chn_farms, tib_farms, chn_glaciers, tib_glaciers, chn_grazing, tib_grazing, chn_hwyCrew, tib_hwyCrew, chn_hospitals, tib_hospitals, chn_lakes, tib_lakes, chn_monastaries, tib_monastaries, chn_pass, tib_pass, chn_rivers, tib_rivers, chn_townships, tib_townships, chn_villages, tib_villages]);                    <br>
<br>            var mapPanel = new GeoExt.MapPanel({<br>                title: &quot;Map&quot;,<br>                map: map,<br>                center: map.setCenter(new OpenLayers.LonLat(93.9, 29.53).transform(new OpenLayers.Projection(&quot;EPSG:4326&quot;), map.getProjectionObject())),<br>
                zoom: 9, <br>                region: &quot;center&quot;,<br>                bbar: [{<br>                    xtype: &quot;label&quot;,<br>                    text: &quot;Scale = 1 : &quot;<br>                }],<br>
                items: [{<br>                    xtype: &quot;gx_zoomslider&quot;,<br>                    vertical: true,<br>                    height: 300,<br>                    x: 10,<br>                    y: 20,<br>
                    plugins: new GeoExt.ZoomSliderTip()<br>                }]<br>            });<br>            <br>            var layerRoot = new Ext.tree.TreeNode({<br>                text: &quot;All Layers&quot;,<br>                expanded: true,<br>
                autoLoad: true<br>                });<br>            <br>//Is there something to set here???<br>                layerRoot.appendChild(new GeoExt.tree.BaseLayerContainer({<br>                text: &quot;Base Layers&quot;,<br>
                map: map,<br>                layerStore: mapPanel.layers,<br>                expanded: true,<br>                autoLoad: true<br>                }));<br><br>//.....<br><br>Thank you very much, I appreciate any suggestions :),<br>
 <br>elshae<br><br><br><br>