ArcGIS Engine 中线段的绘制方法


基本步骤

构建形状

1. 创建 IPoint
IPoint m_Point = new PointClass();
m_Point.PutCoords(x, y);

2. 创建 IPointCollection
IPointCollection m_PointCollection = new PolylineClass();
m_PointCollection.AddPoint(m_Point, ref Type.Missing, ref Type.Missing);

3. 创建 IPolyline
IPolyline m_Polyline = new PolylineClass();
m_Polyline = m_PointCollection as IPolyline;

4. 创建 IElement
// Element 不能实例化,需要用其派生类实例化
IElement m_Element = m_SimpleLineSymbol as IElement;
m_Element.Geometry = m_Polyline;

设置形状样式
1. 创建 ISimpleLineSymbol
ISimpleLineSymbol m_SimpleLineSymbol = new SimpleLineSymbolClass();

2. 创建 ILineElement
ILineElement m_LineElement = new LineElementClass();
m_LineElement.Symbol = m_SimpleLineSymbol;

加载到地图
IMap m_Map = axMapControl1.Map;
IActiveView m_ActiveView = m_Map as IActiveView;
IGraphicsContainer m_Container = m_Map as IGraphicsContainer;

m_Container.AddElement(m_Element, 0);

m_Active.PartialRefresh(esriViewDrawPhase.esriViewGraphics, null, null);


-----------------------------------------------------------------------------------------------------------

其他方法

 

[csharp]  view plain copy print ?
  1. private void DrawLine()  
  2.          
  3.             ILineElement pLineElement;  
  4.             IElement pLElement;  
  5.   
  6.             IPolyline pLine;  
  7.   
  8.             RgbColor pColor new RgbColor();  
  9.             pColor.Red 0;  
  10.             pColor.Green 0;  
  11.             pColor.Blue 255;  
  12.               
  13.             ISimpleLineSymbol pSimpleLineSymbol new SimpleLineSymbolClass();  
  14.             pSimpleLineSymbol.Color pColor;  
  15.             pSimpleLineSymbol.Width 5;  
  16.   
  17.             pLineElement new LineElementClass();  
  18.             pLineElement.Symbol pSimpleLineSymbol;  
  19.   
  20.             pLElement pLineElement as IElement;  
  21.   
  22.             IRubberBand pRubberBand;  
  23.             pRubberBand new RubberLineClass();  
  24.             pLine pRubberBand.TrackNew(axMapControl1.ActiveView.ScreenDisplay, nullas IPolyline;  
  25.   
  26.             pLElement.Geometry pLine;  
  27.   
  28.             IGraphicsContainer pGraphicsContainer;  
  29.             pGraphicsContainer axMapControl1.ActiveView as IGraphicsContainer;//把地图的当前view作为图片的容器  
  30.               
  31.             pGraphicsContainer.AddElement(pLElement, 0);//把刚刚的element转到容器上  
  32.             axMapControl1.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewGraphics, nullnull);  
  33.         }  
复制去Google翻译 翻译结果
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值