zoukankan      html  css  js  c++  java
  • 在AE中通过指定中心点和半径画圆

    /// <summary>
    /// 通过指定的中心点、半径画圆
    /// </summary>
    /// <param name="pLayer">要画的圆所在的图层</param>
    /// <param name="pPoint">圆的中心点</param>
    /// <param name="circleRadius">半径圆的</param>
    /// <param name="pScreenDisplay">图形绘制对象</param>
    private void DrawCircleByCenterAndRadius(ILayer pLayer, IPoint pPoint, double circleRadius, IScreenDisplay pScreenDisplay)
    {
        
    if (pLayer != null)
        {
            ISegmentCollection pSegmentCollection 
    = null;
            
    if (pLayer is IFeatureLayer)
            {
                IFeatureLayer pFeatureLayer 
    = pLayer as IFeatureLayer;
                IFeatureClass pFeatureClass 
    = pFeatureLayer.FeatureClass;
                
    if (pFeatureClass != null)
                {
                    
    if (pFeatureClass.ShapeType == esriGeometryType.esriGeometryPolyline)
                    {
                        pSegmentCollection 
    = new PolylineClass();
                    }
                    
    else if (pFeatureClass.ShapeType == esriGeometryType.esriGeometryPolygon)
                    {
                        pSegmentCollection 
    = new PolygonClass();
                    }
                    
    //开始画圆
                    pSegmentCollection.SetCircle(pPoint, circleRadius);
                    IFeature pCircleFeature 
    = pFeatureClass.CreateFeature();
                    pCircleFeature.Shape 
    = pSegmentCollection as IGeometry;
                    pCircleFeature.Store();
                    
    //局部刷新
                    IInvalidArea pInvalidArea = new InvalidAreaClass();
                    pInvalidArea.Add(pSegmentCollection);
                    pInvalidArea.Display 
    = pScreenDisplay;
                    pInvalidArea.Invalidate((
    short)esriScreenCache.esriAllScreenCaches);
                }
            }
        }
    }


    调用:

    DrawCircleByCenterAndRadius(axMapControl1.get_Layer(1), pPoint, 180, axMapControl1.ActiveView.ScreenDisplay);


    from: http://www.cnblogs.com/GISCafe/archive/2008/05/26/1207927.html

  • 相关阅读:
    防火墙透明模式
    HP管理工具System Management Homepage安装配置
    kbmmw 中JSON 中使用SQL 查询
    kbmmw 中JSON 操作入门
    第一个kbmmw for Linux 服务器
    kbmmw 5.02发布
    kbmmw 5.01 发布
    使用delphi 10.2 开发linux 上的Daemon
    使用unidac 在linux 上无驱动直接访问MS SQL SERVER
    使用delphi 10.2 开发linux 上的webservice
  • 原文地址:https://www.cnblogs.com/yuxuetaoxp/p/3258735.html
Copyright © 2011-2022 走看看