C# ArcEngine,如何根据已有的两点的XY坐标,把这条线在地图上显示出来?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# ArcEngine,如何根据已有的两点的XY坐标,把这条线在地图上显示出来?相关的知识,希望对你有一定的参考价值。
有几十条线,线的首尾端坐标都已知,在数据库内存放,如何通过C#,把这些线在ArcEngine控件内显示出来?
参考技术A IPoint p1 = new PointClass();IPoint p2 = new PointClass();
p1.X = 75;
p1.Y = 5;
p2.X = 75;
p2.Y = 65;
ILine DisplayLine = new LineClass();
DisplayLine.PutCoords(p1, p2); 参考技术B IPoint pt;
pt = new Point();
pt.x=_x;pt.y =_y;
IMarkerElement pMarkerElement;
pMarkerElement = new MarkerElementClass();
IElement pElement;
pElement = pMarkerElement as IElement;
pElement.Geometry = pt;
pGraphicsContainer = pMap as IGraphicsContainer;
pGraphicsContainer.AddElement((IElement)pMarkerElement, 0);
pActiveView.Refresh();本回答被提问者和网友采纳
以上是关于C# ArcEngine,如何根据已有的两点的XY坐标,把这条线在地图上显示出来?的主要内容,如果未能解决你的问题,请参考以下文章
在arcengine里面如何用GP工具实现addjoin .用C#