コード例 #1
0
        /// <summary>
        /// Adds a category to the scheme, and also names the category with an integer that has not yet been used.
        /// </summary>
        /// <returns>A new category with a name that has not yet been used.</returns>
        public ILabelCategory AddCategory()
        {
            string name   = "Category 0";
            bool   unused = false;
            int    i      = 0;

            while (!unused)
            {
                unused = true;
                foreach (ILabelCategory cat in Categories)
                {
                    if (cat.Name == name)
                    {
                        unused = false;
                        i++;
                        name = "Category " + i;
                        break;
                    }
                }
            }

            ILabelCategory catnew = new LabelCategory();

            catnew.Name = name;
            Categories.Add(catnew);
            return(catnew);
        }
コード例 #2
0
        /// <summary>
        /// Returns a shallow copy of this category with the exception of
        /// the TextSymbolizer, which is duplicated.  This uses memberwise
        /// clone, so sublcasses using this method will return an appropriate
        /// version.
        /// </summary>
        /// <returns>A shallow copy of this object.</returns>
        public virtual LabelCategory Copy()
        {
            LabelCategory result = MemberwiseClone() as LabelCategory;

            if (result == null)
            {
                return(null);
            }
            result.Symbolizer          = Symbolizer.Copy();
            result.SelectionSymbolizer = SelectionSymbolizer.Copy();
            return(result);
        }
コード例 #3
0
 /// <summary>
 /// This will add a new label category that will only apply to the specified filter expression.
 /// This will not remove any existing categories.
 /// </summary>
 /// <param name="featureLayer">The feature layer that the labels should be applied to</param>
 /// <param name="expression">The string expression where field names are in square brackets</param>
 /// <param name="filterExpression">The string filter expression that controls which features are labeled.
 /// Field names are in square brackets, strings in single quotes.</param>
 /// <param name="symbolizer">The label symbolizer that controls the basic appearance of the labels in this
 /// category.</param>
 /// <param name="name">The name of the category.</param>
 public static void AddLabels(this IFeatureLayer featureLayer, string expression, string filterExpression,
                       ILabelSymbolizer symbolizer, string name)
 {
     if (featureLayer.LabelLayer == null) featureLayer.LabelLayer = new MapLabelLayer();
     featureLayer.ShowLabels = true;
     ILabelCategory lc = new LabelCategory
     {
         Expression = expression,
         FilterExpression = filterExpression,
         Symbolizer = symbolizer,
         Name = name,
     };
     featureLayer.LabelLayer.Symbology.Categories.Add(lc);
     featureLayer.LabelLayer.CreateLabels();
 }
コード例 #4
0
 /// <summary>
 /// This will add a new label category that will only apply to the specified filter expression.  This will
 /// not remove any existing categories.
 /// </summary>
 /// <param name="featureLayer">The feature layer that the labels should be applied to</param>
 /// <param name="expression">The string expression where field names are in square brackets</param>
 /// <param name="filterExpression">The string filter expression that controls which features are labeled.
 /// Field names are in square brackets, strings in single quotes.</param>
 /// <param name="symbolizer">The label symbolizer that controls the basic appearance of the labels in this
 ///  category.</param>
 /// <param name="width">A geographic width, so that if the map is zoomed to a geographic width smaller than
 /// this value, labels should appear.</param>
 public static void AddLabels(this IFeatureLayer featureLayer, string expression, string filterExpression,
                       ILabelSymbolizer symbolizer, double width)
 {
     if (featureLayer.LabelLayer == null) featureLayer.LabelLayer = new MapLabelLayer();
     featureLayer.ShowLabels = true;
     ILabelCategory lc = new LabelCategory
     {
         Expression = expression,
         FilterExpression = filterExpression,
         Symbolizer = symbolizer
     };
     featureLayer.LabelLayer.UseDynamicVisibility = true;
     featureLayer.LabelLayer.DynamicVisibilityWidth = width;
     featureLayer.LabelLayer.Symbology.Categories.Add(lc);
     featureLayer.LabelLayer.CreateLabels();
 }
コード例 #5
0
        /// <summary>
        /// This activates the labels for the specified feature layer that will be the specified expression
        /// where field names are in square brackets like "[Name]: [Value]".  This will label all the features,
        /// and remove any previous labeling.
        /// </summary>
        /// <param name="featureLayer">The FeatureLayer to apply the labels to.</param>
        /// <param name="expression">The string label expression to use where field names are in square brackets like
        /// [Name]</param>
        /// <param name="font">The font to use for these labels</param>
        /// <param name="fontColor">The color for the labels</param>
        public static void AddLabels(this IFeatureLayer featureLayer, string expression, Font font, Color fontColor)
        {
            featureLayer.ShowLabels = true;

            var ll = new MapLabelLayer();
            ll.Symbology.Categories.Clear();
            var lc = new LabelCategory { Expression = expression };
            ll.Symbology.Categories.Add(lc);

            var ls = ll.Symbolizer;
            ls.Orientation = ContentAlignment.MiddleCenter;
            ls.FontColor = fontColor;
            ls.FontFamily = font.FontFamily.ToString();
            ls.FontSize = font.Size;
            ls.FontStyle = font.Style;
            ls.PartsLabelingMethod = PartLabelingMethod.LabelLargestPart;
            featureLayer.LabelLayer = ll;
        }
コード例 #6
0
ファイル: LabelScheme.cs プロジェクト: ExRam/DotSpatial-PCL
 /// <summary>
 /// Adds a category to the scheme, and also names the category with an integer that has not yet been used.
 /// </summary>
 /// <returns>A new category with a name that has not yet been used</returns>
 public ILabelCategory AddCategory()
 {
     string name = "Category 0";
     bool unused = false;
     int i = 0;
     while (unused == false)
     {
         unused = true;
         foreach (ILabelCategory cat in Categories)
         {
             if (cat.Name == name)
             {
                 unused = false;
                 i++;
                 name = "Category " + i;
                 break;
             }
         }
     }
     ILabelCategory catnew = new LabelCategory();
     catnew.Name = name;
     Categories.Add(catnew);
     return catnew;
 }