Index: DamClients/DamUI/trunk/src/Dam/Forms/DamPlugin.cs =================================================================== diff -u -r1717 -r1783 --- DamClients/DamUI/trunk/src/Dam/Forms/DamPlugin.cs (.../DamPlugin.cs) (revision 1717) +++ DamClients/DamUI/trunk/src/Dam/Forms/DamPlugin.cs (.../DamPlugin.cs) (revision 1783) @@ -244,7 +244,7 @@ private void ConfigureControls() { - this.mapEditor = new DamMapEditor(mapControl, this.locationJobSymbol); + this.ConfigureMapEditor(); this.geometryEditor = new DamGeometryEditor(mainForm.GeometryEditor); this.ConfigureNavigation(); @@ -253,7 +253,16 @@ this.ConfigureTable(); ConfigureSoilMechanisms(); } + private void ConfigureMapEditor() + { + this.mapEditor = new DamMapEditor(mapControl, this.locationJobSymbol); + mapControl.EnableSelectButton = true; + mapControl.EnableZoomToData = true; + mapControl.EnableZoomToSelection = true; + mapControl.EnableZoomRectangle = true; + } + private void RegisterCalculation() { CalculationManager.Instance.Register("DAM", this.ExecuteCalculation);