ThinkGeo.com    |     Documentation    |     Premium Support

Browser Item Remaining status

I am using CustomOverlays with Pictometry. When roaming around the map, I am getting "X item remaining..." (on the lower left corner of the browser.) even though the image tiling is completed.  The only way I could clear it is by refreshing the whole web page. Is there any way I could remove programmatically on client-side? Thanks



LayerOverlay objAerialOverLay = null;

    GdiPlusRasterLayer objRasterImageLayer = null;

                string strOverlayName = MapHelpers.ImageryOverlayType.Aerial.ToString();

                objAerialOverLay = new LayerOverlay(strOverlayName);           

                objRasterImageLayer = new GdiPlusRasterLayer();

                objRasterImageLayer.Name = "GdiAerial";



                string imageFilePath = MapHelpers.GetAerialExtentImage(aCurrentExtent);

                GdiPlusRasterLayer gdiPlusImageLayer = new GdiPlusRasterLayer(imageFilePath);

                gdiPlusImageLayer.UpperThreshold = double.MaxValue;

                gdiPlusImageLayer.LowerThreshold = 0;

                objAerialOverLay.Name = strOverlayName;

                objAerialOverLay.IsBaseOverlay = true;

                objAerialOverLay.Layers.Add(gdiPlusImageLayer);

                objAerialOverLay.IsVisibleInOverlaySwitcher = true;

                Map1.CustomOverlays.Add(objAerialOverLay);



Hi Ttd, 
  
 This issue may caused by many reasons. Please help me with the following information I need: 
 1, Which version of web edition are you using? It’s an old bug in our old version. 
 2, Is there extent changed events hooked on the map? Because this event may conflict with other hooked server events during the postback. 
  
 If you are using the latest version 3.1.182 and no event hooked on the map; please provide me a sample which I can recreate your issue. 
  
 Any questions please let me know. 
  
 Thanks, 
 Howard

We are currently using Webedition 3.1.16.0. The issues only occur on IE 6/7.0. I attached the sample code for your inspection.



1106-CSharp_Samples.zip (221 KB)

Hi Ttd, 
  
 I noticed there is an ExtentChanged event which raises whenever you zooming and panning. I think the problem is from here; please unhook this event and try again. If the requests sent so frequently, IE may have this issue when the server is blocked or other reasons. Also I see it adds a GdiPlusRasterLayer in static overlay but never clear. How many RasterLayer will it add after panning for several times? 
  
 Also, could you upgrade to our latest version and see. Our latest public version is 3.1.182. 
  
 Thanks, 
 Howard