博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
arcEngine 经典代码(转)
阅读量:6671 次
发布时间:2019-06-25

本文共 5435 字,大约阅读时间需要 18 分钟。

画点
[C#]
public void OnMouseDown(int Button, int Shift, int X, int Y)
{
  IMxDocument mxDoc = m_App.Document as IMxDocument;
  IActiveView activeView = mxDoc.FocusMap as IActiveView;
  IScreenDisplay screenDisplay = activeView.ScreenDisplay;
  screenDisplay.StartDrawing(screenDisplay.hDC, (short)  esriScreenCache.esriNoScreenCache);
  screenDisplay.SetSymbol(new SimpleMarkerSymbolClass());
  screenDisplay.DrawPoint(mxDoc.CurrentLocation);
  screenDisplay.FinishDrawing();
}
画线
public void OnMouseDown(int Button, int Shift, int X, int Y)
{
  IMxDocument mxDoc = m_App.Document as IMxDocument;
  IActiveView activeView = mxDoc.FocusMap as IActiveView;
  IScreenDisplay screenDisplay = activeView.ScreenDisplay;
  ISimpleLineSymbol lineSymbol = new SimpleLineSymbolClass();
  IRgbColor rgbColor = new RgbColorClass();
  rgbColor.Red = 255;
  lineSymbol.Color = rgbColor;
  IRubberBand rubberLine = new RubberLineClass();
  IPolyline newPolyline = (IPolyline)rubberLine.TrackNew(screenDisplay, (ISymbol)lineSymbol);
  screenDisplay.StartDrawing(screenDisplay.hDC, (short)esriScreenCache.esriNoScreenCache);
  screenDisplay.SetSymbol((ISymbol)lineSymbol);
  screenDisplay.DrawPolyline(newPolyline);
  screenDisplay.FinishDrawing();
}
画线2
{
        ICartographicLineSymbol pCartoLineSyl;
                                pCartoLineSyl = new CartographicLineSymbolClass();
                                pCartoLineSyl.Color = getRGB(255, 110, 210);
                                pCartoLineSyl.Cap = esriLineCapStyle.esriLCSButt;
                                pCartoLineSyl.Join = esriLineJoinStyle.esriLJSBevel;
                                pCartoLineSyl.Width=4;
                                pCartoLineSyl.MiterLimit=4;
                        ILineProperties pLinePro ;
                                pLinePro = pCartoLineSyl as ILineProperties;//取地址
                        ISimpleLineDecorationElement pSimpleLineDecoEle;
                                pSimpleLineDecoEle = new SimpleLineDecorationElementClass();
                                pSimpleLineDecoEle.FlipAll = true;
                                pSimpleLineDecoEle.FlipFirst = true;
                        ILineDecoration pLineDeco;
                                pLineDeco = new LineDecorationClass();
                                pLineDeco.AddElement(pSimpleLineDecoEle);
                                        pLinePro.LineDecoration = pLineDeco;
                                        pLinePro.DecorationOnTop=true;
                        IGeometry pGeo;
                                pGeo = axMapControl2.TrackLine();
                        object oLineSymbol = pCartoLineSyl;
                        axMapControl2.DrawShape(pGeo, ref oLineSymbol);
}
画线3
private void axMapControl2_OnMouseDown(object sender, AxESRI.ArcGIS.MapControl.IMapControlEvents2_OnMouseDownEvent e)
                {       
//                        ISimpleLineSymbol pLineSyl;
//                                pLineSyl = new SimpleLineSymbolClass();
//                                pLineSyl.Color = getRGB(30, 60, 90);
//                                pLineSyl.Width = 4;
//                                pLineSyl.Style = esriSimpleLineStyle.esriSLSDashDot;
                        ICartographicLineSymbol pCartoLineSyl;
                                pCartoLineSyl = new CartographicLineSymbolClass();
                                //pCartoLineSyl.Color = getRGB(255, 110, 210);
                                pCartoLineSyl.Cap = esriLineCapStyle.esriLCSButt;
                                pCartoLineSyl.Join = esriLineJoinStyle.esriLJSBevel;
                                pCartoLineSyl.Width=10;
                                pCartoLineSyl.MiterLimit=4;
                        ILineProperties pLinePro ;
                                pLinePro = pCartoLineSyl as ILineProperties;//取地址
                        ISimpleLineDecorationElement pSimpleLineDecoEle;
                                pSimpleLineDecoEle = new SimpleLineDecorationElementClass();
                                pSimpleLineDecoEle.FlipAll = true;
                                pSimpleLineDecoEle.FlipFirst = true;
                        ILineDecoration pLineDeco;
                                pLineDeco = new LineDecorationClass();
                                pLineDeco.AddElement(pSimpleLineDecoEle);
                                        pLinePro.LineDecoration = pLineDeco;
                                        pLinePro.DecorationOnTop=true;
                        ILineFillSymbol pLineFillSymbol =new LineFillSymbolClass();
                                pLineFillSymbol.Offset=3;
                                pLineFillSymbol.Angle=45;
                                pLineFillSymbol.Offset=10;
                        IFillSymbol pFillSymbol =pLineFillSymbol as IFillSymbol;
                                pFillSymbol.Color=getRGB(0,0,200);
                                pFillSymbol.Outline=pCartoLineSyl;
                        ICharacterMarkerSymbol pCharacterMarkerSymbol;
                                pCharacterMarkerSymbol = new CharacterMarkerSymbolClass();
                                //设置它的字符,114为‘r’
                                pCharacterMarkerSymbol.CharacterIndex = 114;
                        IMarkerFillSymbol pMarkerFillSymbol =new MarkerFillSymbolClass();
                                pMarkerFillSymbol.Outline=pCartoLineSyl;
                                pMarkerFillSymbol.Style=esriMarkerFillStyle.esriMFSRandom;
                                pMarkerFillSymbol.MarkerSymbol=pCharacterMarkerSymbol;
                                pMarkerFillSymbol.GridAngle=45;
                                pMarkerFillSymbol.Color=getRGB(0,255,255);
                        IGeometry pGeo;
                        pGeo = axMapControl2.TrackLine();
                        object oLineSymbol = pCartoLineSyl;
                       
                        axMapControl2.DrawShape(pGeo, ref oLineSymbol);
                       
       
                }
画面
public void OnMouseDown(int Button, int Shift, int X, int Y)
{
  IMxDocument mxDoc = m_App.Document as IMxDocument;
  IActiveView activeView = mxDoc.FocusMap as IActiveView;
  IScreenDisplay screenDisplay = activeView.ScreenDisplay;
  ISimpleFillSymbol fillSymbol = new SimpleFillSymbolClass();
  IRgbColor rgbColor = new RgbColorClass();
  rgbColor.Red = 255;
  fillSymbol.Color = rgbColor;
  IRubberBand rubberPolygon = new RubberPolygonClass();
  IPolygon newPolygon = (IPolygon)rubberPolygon.TrackNew(screenDisplay, (ISymbol)fillSymbol);
  screenDisplay.StartDrawing(screenDisplay.hDC, (short)esriScreenCache.esriNoScreenCache);
  screenDisplay.SetSymbol((ISymbol)fillSymbol);
  screenDisplay.DrawPolygon(newPolygon);
  screenDisplay.FinishDrawing();
}
画矩形
public void OnMouseDown(int Button, int Shift, int X, int Y)
{
  IMxDocument mxDoc = m_App.Document as IMxDocument;
  IActiveView activeView = mxDoc.FocusMap as IActiveView;
  IScreenDisplay screenDisplay = activeView.ScreenDisplay;
  ISimpleFillSymbol fillSymbol = new SimpleFillSymbolClass();
  IRgbColor rgbColor = new RgbColorClass();
  rgbColor.Red = 255;
  fillSymbol.Color = rgbColor;
  IRubberBand rubberEnv = new RubberEnvelopeClass();
  IEnvelope newEnvelope = (IEnvelope)rubberEnv.TrackNew(screenDisplay, (ISymbol)fillSymbol);
  screenDisplay.StartDrawing(screenDisplay.hDC, (short)esriScreenCache.esriNoScreenCache);
  screenDisplay.SetSymbol((ISymbol)fillSymbol);
  screenDisplay.DrawRectangle(newEnvelope);
  screenDisplay.FinishDrawing();
}

转载地址:http://vclxo.baihongyu.com/

你可能感兴趣的文章
CoordinatorLayout、AppBarLayout实现上滑隐藏图片,下滑显示图片
查看>>
React-Router底层原理分析与实现
查看>>
十五、Android性能优化之提升应用的启动速度和Splash页面的设计
查看>>
09-封装
查看>>
在小程序中使用 React with Hooks
查看>>
Re:从零开始的机器学习 - Titanic: Machine Learning from Disaster
查看>>
Android 面试开源框架篇
查看>>
前端调试:记Iscroll4 疑难杂症之z-index失效
查看>>
【译】Android Architecture - ViewModel 与 View 的通信
查看>>
AFNetWorking—NSURLSession
查看>>
Apache Thrift系列详解(三) - 序列化机制
查看>>
ES6学习笔记之Function
查看>>
第一章 面对对象的概念
查看>>
Masonry动画更新约束
查看>>
iOS11踩坑记录
查看>>
基于 HTML5 的 WebGL 3D 智能楼宇监控系统
查看>>
如何创建一个类似于element-ui的Message组件
查看>>
jvm - 垃圾回收
查看>>
Java基本语法
查看>>
Java命令之javap初探
查看>>