示例#1
0
        public virtual void ApplySizeTheme(IDataSizeTheme theme)
        {
            if (LayerData.GeoType == "1")
            {
                for (int i = 0; i < Features.Count; i++)
                {
                    var feature = LayerData.Features[i];
                    var shape   = Features[feature];

                    double size = MapControl.Current.GetMagFactor(MapControl.Current.InitialScale) * theme.GetSize(feature);
                    ElementPositionHelper.CenterElementInCanvas(shape, size, size);
                }
            }
            else if (LayerData.GeoType == "2")
            {
                // done: 流量图
                for (int i = 0; i < Features.Count; i++)
                {
                    var feature = LayerData.Features[i];
                    var shape   = Features[feature];

                    double size = theme.GetSize(feature);
                    (shape as Polyline).StrokeThickness = size;
                }
            }
            _hasSizeTheme = true;
            _sizeTheme    = theme;
        }
示例#2
0
        protected virtual void AddSpot(Point pos, IFeature f)
        {
            double  size   = LayerStyle.SpotSize;
            Ellipse result = new Ellipse {
                Width = size, Height = size
            };

            ElementPositionHelper.SetElementDesignPosition(result, pos);
            ElementPositionHelper.CenterElementInCanvas(result, size, size);
            result.Stroke          = LayerStyle.Stroke;
            result.StrokeThickness = LayerStyle.StrokeWeight;
            result.Fill            = LayerStyle.GetFill();
            this.AddFeatureChildren(f, result);
        }
示例#3
0
 public virtual void ClearSizeTheme()
 {
     for (int i = 0; i < Features.Count; i++)
     {
         var feature = LayerData.Features[i];
         var shape   = Features[feature];
         if (LayerData.GeoType == "1")
         {
             double size = MapControl.Current.GetMagFactor(MapControl.Current.InitialScale) * LayerStyle.SpotSize;
             ElementPositionHelper.CenterElementInCanvas(shape, size, size);
         }
         else if (LayerData.GeoType == "2")
         {
             double size = MapControl.Current.GetMagFactor(MapControl.Current.InitialScale) * LayerStyle.StrokeWeight;
             (shape as Polyline).StrokeThickness = size;
         }
     }
     _hasSizeTheme = false;
 }
示例#4
0
 public virtual void SetMagFactor(double magFactor)
 {
     if (this.LayerData.GeoType == "1" && !_hasSizeTheme)
     {
         foreach (Ellipse ep in this.Features.Values)
         {
             double size = this.LayerStyle.SpotSize * magFactor;
             ep.StrokeThickness = this.LayerStyle.StrokeWeight * magFactor;
             ElementPositionHelper.CenterElementInCanvas(ep, size, size);
         }
     }
     else if (this.LayerData.GeoType == "2" && !IsRoad())
     {
         if (_hasSizeTheme)
         {
             foreach (var feature in this.Features)
             {
                 feature.Value.StrokeThickness = _sizeTheme.GetSize(feature.Key) * magFactor;
             }
         }
         else
         {
             foreach (var poly in this.Features.Values)
             {
                 poly.StrokeThickness = this.LayerStyle.StrokeWeight * magFactor;
             }
         }
     }
     else if (this.LayerData.GeoType == "4")
     {
         foreach (Polygon poly in this.Features.Values)
         {
             poly.StrokeThickness = this.LayerStyle.StrokeWeight * magFactor;
         }
     }
 }