ThinkGeo.com    |     Documentation    |     Premium Support

StaticOverlay property in version 3.1.299

Hi,


I just downloaded version 3.1.299 because I read some posts indicating that there have been some performance improvements in the last couple of months.  When I complied with the new version, I got an error stating that StaticOverlay wasn't a property on the WpfMap.  We were using it to set a tile cache.  Is there a different way to do this now?  Also, are there release notes for this new version?  I'm curious about possible refresh performance improvements around zoom, pan, etc with the WPF version, as I'm concerned about the chunkyness of the refresh, even with just a few features in a layer.


These posts made me curious about WPF refresh performance:


gis.thinkgeo.com/Support/DiscussionForums/tabid/143/aff/21/aft/6516/afv/topic/Default.aspx


gis.thinkgeo.com/Support/DiscussionForums/tabid/143/aff/12/aft/5303/afv/topic/Default.aspx


Thanks,


Greg



Greg,


Version 3.1.299 is a public release version, we have removed many obsolete properties in this version, including StaticOverlay and DynamicOverlay. Now we suggest you define a LayerOverlay and add it to Overlays, probabbly like this:

LayerOverlay layerOverlay = new LayerOverlay();
layerOverlay.TileCache = new FileBitmapTileCache(@"C:\MyTileCacheFolder", "LayerOverlayTileCache");
layerOverlay.Layers.Add("WorldLayer", worldLayer);
wpfMap1.Overlays.Add("WorldOverlay", layerOverlay);

 
About the performance, could you try the HowDoI samples in Wpf included in our installer package to see its effect or have a quick test on your data based on it?
 
Any more questions just feel free to let me know.
 
Thanks.
 
Yale

It appears that the pan and zoom performance is better in the HowDoI samples.  This gives me a baseline for comparison.


Thanks,


Greg



Greg, 
  
   We know of some ways to further improve performance in panning and track shape drawing / track zooming.  At the moment they are on the list for prioritization but I would suspect then coming out over the next few months. 
  
 David