using System.Collections.Generic;
using Core.Common.Gui;
using Core.Common.Gui.Forms;
using Core.Common.Gui.Plugin;
using Core.Common.Gui.Properties;
using Core.Components.DotSpatial.Data;
using Core.Plugins.DotSpatial.Forms;
namespace Core.Plugins.DotSpatial
{
///
/// The gui plugin for the map component.
///
public class DotSpatialGuiPlugin : GuiPlugin
{
///
/// Gets the view info objects.
///
///
public override IEnumerable GetViewInfoObjects()
{
yield return new ViewInfo
{
Image = Resources.DocumentHS,
GetViewName = (v, o) => "Kaart"
};
}
}
}