Theming.cs :  » GIS » SharpMap » ExampleCodeSnippets » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » GIS » SharpMap 
SharpMap » ExampleCodeSnippets » Theming.cs

namespace ExampleCodeSnippets{
    public class SymbolRotationTheming
    {
        /// <summary>
        /// Name of the column, which contains the rotation angle in degrees [0, 360]
        /// </summary>
        public System.String StyleRotationColumn { get; set; }

        /// <summary>
        /// Default vector style from which parts are to be modified
        /// </summary>
        public SharpMap.Styles.VectorStyle DefaultStyle { get; set; }

        /// <summary>
        /// Creates an instance of this class
        /// </summary>
        /// <param name="styleRotationColumn">Name of the column, which contains the rotation angle in degrees [0, 360]</param>
        public SymbolRotationTheming(System.String styleRotationColumn)
            :this(styleRotationColumn, new SharpMap.Styles.VectorStyle())
        {
        }

        /// <summary>
        /// Creates an instance of this class
        /// </summary>
        /// <param name="styleRotationColumn">Name of the column, which contains the rotation angle in degrees [0, 360]</param>
        /// <param name="defaultStyle">Default vector style from which parts are to be modified</param>
        public SymbolRotationTheming(System.String styleRotationColumn, SharpMap.Styles.VectorStyle defaultStyle)
        {
            StyleRotationColumn = styleRotationColumn;
            DefaultStyle = defaultStyle;
        }

        private static SharpMap.Styles.VectorStyle CloneStyle(SharpMap.Styles.VectorStyle styleToClone)
        {
            SharpMap.Styles.VectorStyle style =
                new SharpMap.Styles.VectorStyle
                    {
                        Enabled = styleToClone.Enabled,
                        MinVisible = styleToClone.MinVisible,
                        MaxVisible = styleToClone.MaxVisible,
                        Line = styleToClone.Line.Clone() as System.Drawing.Pen,
                        Fill = styleToClone.Fill.Clone() as System.Drawing.Brush,
                        Outline = styleToClone.Outline.Clone() as System.Drawing.Pen,
                        EnableOutline = styleToClone.EnableOutline,
                        Symbol = styleToClone.Symbol.Clone() as System.Drawing.Bitmap,
                        SymbolOffset = styleToClone.SymbolOffset,
                        SymbolRotation = styleToClone.SymbolRotation,
                        SymbolScale = styleToClone.SymbolScale
                    };

            return style;
        }

        public SharpMap.Styles.VectorStyle GetRotatedSymol(SharpMap.Data.FeatureDataRow row)
        {
            if (!System.String.IsNullOrEmpty(StyleRotationColumn))
                try
                {
                    SharpMap.Styles.VectorStyle dataStyle = CloneStyle(DefaultStyle);
                    dataStyle.SymbolRotation = System.Convert.ToSingle(row[StyleRotationColumn]);
                    return dataStyle;
                }
                catch { }

            return null;
        }
    }

    [NUnit.Framework.TestFixture]
    public class SymbolRotationThemingTest
    {
        private static readonly System.Random _randomNumberGenerator = new System.Random();
        static System.Double[] GetRandomOrdinates(System.Int32 size, System.Double min, System.Double max)
        {
            System.Double[] arr = new System.Double[size];
            System.Double width = max - min;
            for(System.Int32 i = 0; i < size; i++)
            {
                System.Double randomValue = _randomNumberGenerator.NextDouble();
                arr[i] = min + randomValue*width;
            }
            return arr;
        }
        
        [NUnit.Framework.Test]
        public void TestSymbolRotationTheming()
        {
            //Create a map
            SharpMap.Map map = new SharpMap.Map(new System.Drawing.Size(720,360));
            
            //Create some random sample data
            CreatingData cd = new CreatingData();
            SharpMap.Data.FeatureDataTable fdt =
                cd.CreatePointFeatureDataTableFromArrays(GetRandomOrdinates(80, -180, 180),
                                                         GetRandomOrdinates(80, -90, 90), null);

            //Add rotation column and fill with random rotation values
            fdt.Columns.Add("Rotation", typeof (System.Double));
            foreach (SharpMap.Data.FeatureDataRow row in fdt.Rows)
                row["Rotation"] = _randomNumberGenerator.NextDouble()*360d;


            //Create layer and datasource
            SharpMap.Layers.VectorLayer vl = new SharpMap.Layers.VectorLayer("Points", new SharpMap.Data.Providers.GeometryFeatureProvider(fdt));
            
            //Create default style
            SharpMap.Styles.VectorStyle defaultStyle = new SharpMap.Styles.VectorStyle();
            defaultStyle.Symbol = new System.Drawing.Bitmap(@"..\..\..\DemoWinForm\Resources\flag.png");
            defaultStyle.SymbolScale = 0.5f;

            //Create theming class and apply to layer
            SymbolRotationTheming srt = new SymbolRotationTheming("Rotation", defaultStyle);
            vl.Theme = new SharpMap.Rendering.Thematics.CustomTheme(srt.GetRotatedSymol);

            map.Layers.Add(vl);
            map.ZoomToExtents();
            System.Drawing.Image mapImage = map.GetMap();
            mapImage.Save("SymbolRotation.bmp");
        }
    }

}
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.