Esempio n. 1
0
        private void ClearLayers()
        {
            draggingFeature = null;
            draggingLayer.Clear();
            draggingLayer.Refresh();

            workingRadiusFeature = null;
            workingRadiusLayer.Clear();
            workingRadiusLayer.Refresh();
        }
Esempio n. 2
0
 private void CreateWorkingRadiusFeature()
 {
     workingRadiusLayer.Add(workingRadiusFeature = new WorkingRadiusFeature(editedObject));
     workingRadiusLayer.Refresh();
 }