ThinkGeo.com    |     Documentation    |     Premium Support

This week's Code Community projects

This week we have three new projects that you can check out in the ThinkGeo Code Community: code.thinkgeo.com/


 -How to check if a point is inside the inner ring of a doughnut type polygon in Inner Ring Containment.


code.thinkgeo.com/projects/s...ontainment


 -How to display dynamically a trail tail behind a moving vehicle in Bread Crumb Trail.


code.thinkgeo.com/projects/show/breadcrumbtrail


 -Create your own zoom levels based on a reference scale in Custom Zoom Levels.


code.thinkgeo.com/projects/show/customzoomlevels



Val whats  
 winformsMap1.Overlays["Overlay"].Lock.EnterWriteLock(); 
 winformsMap1.Overlays["Overlay"].Lock.ExitWriteLock();  
 ?  
 I feel a little better the bread crumbs approach is exactly like I thought.  
  


You use EnterWriteLock and ExitWriteLock when you are developing a multi-threaded application. The Bread Crumb Trail project is a one thread application so you don’t have to worry about that. You can comment out those two lines and this is going to behave the same.