// Copyright (C) Stichting Deltares 2016. All rights reserved. // // This file is part of Ringtoets. // // Ringtoets is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program. If not, see . // // All names, logos, and references to "Deltares" are registered trademarks of // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. using System.Windows.Forms; using Core.Common.Base; using Core.Components.DotSpatial.Converter; using Core.Components.Gis.Data; using DotSpatial.Controls; using IMap = Core.Components.Gis.IMap; namespace Core.Components.DotSpatial.Forms { /// /// This class describes a map view with configured projection and function mode. /// public sealed class BaseMap : Control, IMap, IObserver { private readonly MapDataFactory mapDataFactory = new MapDataFactory(); private MapData data; private Map map; private IMapFunction mapFunctionSelectionZoom; /// /// Creates a new instance of . /// public BaseMap() { InitializeMapView(); TogglePanning(); } public bool IsPanningEnabled { get; private set; } public bool IsRectangleZoomingEnabled { get; private set; } public MapData Data { get { return data; } set { if (IsDisposed) { return; } DetachFromData(); data = value; AttachToData(); DrawFeatureSets(); } } public void ZoomToAll() { map.ZoomToMaxExtent(); } public void TogglePanning() { if (!IsPanningEnabled) { ResetDefaultInteraction(); map.FunctionMode = FunctionMode.Pan; IsPanningEnabled = true; } } public void ToggleRectangleZooming() { if (!IsRectangleZoomingEnabled) { ResetDefaultInteraction(); map.FunctionMode = FunctionMode.Select; IsRectangleZoomingEnabled = true; if (mapFunctionSelectionZoom == null) { mapFunctionSelectionZoom = new MapFunctionSelectionZoom(map); } map.ActivateMapFunction(mapFunctionSelectionZoom); } } public void UpdateObserver() { DrawFeatureSets(); } private void ResetDefaultInteraction() { IsPanningEnabled = false; IsRectangleZoomingEnabled = false; } /// /// Attaches the to the currently set , if there is any. /// private void AttachToData() { if (data != null) { data.Attach(this); } } /// /// Detaches the to the currently set , if there is any. /// private void DetachFromData() { if (data != null) { data.Detach(this); } } private void DrawFeatureSets() { map.ClearLayers(); if (data != null) { foreach (IMapFeatureLayer mapLayer in mapDataFactory.Create(data)) { map.Layers.Add(mapLayer); } } } private void InitializeMapView() { map = new Map { ProjectionModeDefine = ActionMode.Never, Dock = DockStyle.Fill, FunctionMode = FunctionMode.Pan }; Controls.Add(map); } } }