ThinkGeo.com    |     Documentation    |     Premium Support

How to clear control points?

 Hi,


    I am calculating control points when a user selects a feature on the map. On the selection of the second feature on the map i have to clear the first selected feature's control points. My approach is to add the selected items to EditOverLay and call


mapControl.EditOverlay.CalculateAllControlPoints();


So, Please help me how to clear the control points?


Regards


Ranjith



Hi G,



To clear the control points, you need to clear the points for every edit layer. Here is the code.
wpfMap1.EditOverlay.ExistingControlPointsLayer.InternalFeatures.Clear();
wpfMap1.EditOverlay.ResizeControlPointsLayer.InternalFeatures.Clear();
wpfMap1.EditOverlay.RotateControlPointsLayer.InternalFeatures.Clear();
wpfMap1.EditOverlay.DragControlPointsLayer.InternalFeatures.Clear();
wpfMap1.EditOverlay.Refresh();



Please let me know if you have more queries.



Thanks,

Howard



Thanks for your quick reply Howard.

Hi G,  
  
 You are welcome; just feel free to let me know if you have more queries. 
  
 Thanks, 
 Howard