ThinkGeo.com    |     Documentation    |     Premium Support

Browser imaging items remaining issue

 


I am using the lastest version of webedition 3.1.299.0. I am using Bing VirtualEarthLayer with Pictometry GdiPlusRasterLayer. Whenever switch to the GDIPlus raster layer and roam map, the browser displaying the "### items remaining) downloading picture" message on status bar, even though the images/tiles rendering are completed. Is there way for me to check the status and clear the message viaclient-side or OpenLayers? 




  
 Are you using VitualEarthOverlay or VirtualEarthLayer in MicrosoftMapLayerExtension.dll? It will be much slower if we use VirtualEarthLayer, VitualEarthOverlay is a better choice thanVirtualEarthLayer.  
  
 In web Edition, a tile buffer will be requested, so we will see the browser is still downloading images from server even when all have completed.  I’m sorry that it seems that it’s unable to disable the requesting currently. 
  
 Thanks, 
  
 Johnny 


ttd,


 
If you just want to hide the browser displaying information on status bar, please have a try:
 
  

OnMapCreating = function() {
            OpenLayers.Control.LayerSwitcher.prototype.onInputClick = function(e) {
                if (!this.inputElem.disabled) {
                    if (this.inputElem.type == "radio") {
                        this.inputElem.checked = true;
                        this.layer.map.setBaseLayer(this.layer);
                        var numLoadings = this.layer.numLoadingTiles;
                        if (parseInt(numLoadings) > 0) {
                            window.defaultStatus = "  ";
                        }
                    } else {
                        this.inputElem.checked = !this.inputElem.checked;
                        this.layerSwitcher.updateMap();
                    }
                }
                OpenLayers.Event.stop(e);
            }
        }


 

Maybe it isn't what you want entirely, however, it's a possibility .


Johnny