基于C#操作Styline二次开发(画线功能)_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 基于C#操作Styline二次开发(画线功能)

基于C#操作Styline二次开发(画线功能)

 2017/9/27 15:43:15  咸蛋_超人  程序员俱乐部  我要评论(0)
  • 摘要:c#操作styline模型左键点击模型获取坐标,完成画线操作。1:鼠标点击模型事件List<IPosition66>pos=newList<IPosition66>();privateboolSgworld_OnLButtonClicked(intFlags,intX,intY){varsgworld=newSGWorld66();varpostioninfo=sgworld.Window.PixelToWorld(X,Y)
  • 标签:C# 功能 开发 操作

c#操作styline模型左键点击模型获取坐标,完成画线操作。

1:鼠标点击模型事件

class="brush:csharp;gutter:true;"> List<IPosition66> pos = new List<IPosition66>();
        private bool Sgworld_OnLButtonClicked(int Flags, int X, int Y)
        {
           
            var sgworld = new SGWorld66();
            var postioninfo = sgworld.Window.PixelToWorld(X, Y);
            IPosition66 ss = postioninfo.Position;
            ss.X = postioninfo.Position.X;
            ss.Y = postioninfo.Position.Y;
            pos.Add(ss); 
            return false;
        } 

2:操作画线

  string tMsg = String.Empty;
            ILinearRing cRing = null;
            IGeometry cPolygonGeometry = null;
            ITerrainPolyline66 cpolyo = null;
            //创建实例
            //MessageBox.Show(String.Format("X:{0}\r\nY:{1}", posl[i].PosX, posl[i].PosX));
            var sgworld = new SGWorld66();
            List<IPosition66> posl = pos;
            int sin = 0;
            sin = posl.Count*3;
            double[] cVerticesArray = new double[sin];
            //获取坐标值
            for (int i = 0; i < posl.Count; i++)
            { 
                cVerticesArray[i*3] = posl[i].X;
                cVerticesArray[i*3+1] = posl[i].Y;
                cVerticesArray[i * 3 + 2] = posl[i].Altitude;
            } 
            {
                cRing = sgworld.Creator.GeometryCreator.CreateLinearRingGeometry(cVerticesArray);
                cPolygonGeometry = sgworld.Creator.GeometryCreator.CreateLinearRingGeometry(cRing);
            } 
            {
                uint nLineColor = 0xFF00FF00; //颜色样式
                AltitudeTypeCode AltitudeType = AltitudeTypeCode.ATC_ON_TERRAIN;
                // D2. Create polygon
                cpolyo = sgworld.Creator.CreatePolyline(cPolygonGeometry, nLineColor, AltitudeType, string.Empty, "Polygon");
                ///注意坐标
                sgworld.Window.PixelToWorld(sgworld.Window.Rect.Left, sgworld.Window.Rect.Top, WorldPointType.WPT_TERRAIN);
            }

  

上一篇: YouTube突然从Echo下架:谷歌亚马逊相互指责 下一篇: 没有下一篇了!
发表评论
用户名: 匿名