博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#鹰眼_带拖动
阅读量:6593 次
发布时间:2019-06-24

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

结合help中给的例子,又使用DisPlayFeedBack,实现在鹰眼中拖动。拖动过程中小边框的显示问题解决的不是很好,还望大家多多指教。
实现如下:
两个MapControl控件:axMapControl1和axMapControl2,axMapControl2存放鹰眼地图。
主要变量有:
private IEnvelope m_Envelope;   //The envelope drawn on the small MapControl---axMapControl2.
private System.Object m_FillSymbol;   //The symbol used to draw the envelope on the small MapControl
//
axMapControl1中的事件
private void CreateOverviewSymbol()  //create the symbol used in the small MapControl ,自定义函数
        {
            //Get the IRGBColor interface.
            IRgbColor color = new RgbColorClass();
            //Set the color properties.
            color.RGB = 255;
            //Get the ILine symbol interface.
            ILineSymbol outline = new SimpleLineSymbolClass();
            //Set the line symbol properties.
            outline.Width = 1.5;
            outline.Color = color;
            //Get the IFillSymbol interface.
            ISimpleFillSymbol simpleFillSymbol = new SimpleFillSymbolClass();
            //Set the fill symbol properties.
            simpleFillSymbol.Outline = outline;
            simpleFillSymbol.Style = esriSimpleFillStyle.esriSFSHollow;
            m_FillSymbol = simpleFillSymbol;
        }
private void
 axMapControl1_OnMapReplaced(object sender, ESRI.ArcGIS.Controls.IMapControlEvents2_OnMapReplacedEvent e)  //更新axMapControl1地图时装载鹰眼地图
        {
            axMapControl2.LoadMxFile(axMapControl1.DocumentFilename);
            axMapControl2.Extent=axMapControl1.FullExtent;                       
            m_Envelope = axMapControl1.ActiveView.Extent;
        }
private void 
axMapControl1_OnExtentUpdated(object sender, IMapControlEvents2_OnExtentUpdatedEvent e)
        {   //axMapControl1的范围变化时,设置鹰眼小边框m_Envelope 的大小
            axMapControl2.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewForeground, null, null);
            m_Envelope = e.newEnvelope as IEnvelope;
        }
private void 
axMapControl1_OnAfterDraw(object sender, IMapControlEvents2_OnAfterDrawEvent e)
        {
            if (m_Envelope == null) return;
             //If the foreground phase has drawn. 
            esriViewDrawPhase viewDrawPhase = (esriViewDrawPhase)e.viewDrawPhase;
            if (viewDrawPhase == esriViewDrawPhase.esriViewForeground)
            {
                axMapControl2.DrawShape(m_Envelope as IGeometry, ref m_FillSymbol);
            }
        }
几个变量:
private IMoveEnvelopeFeedback pSmallViewerEnvelope ;//鹰眼小地图的红框
private IPoint pSmallViewerMouseDownPt ;//拖动时鼠标落点
private bool isTrackingSmallViewer = false;  //标识是否在拖动
static int moveCount = 0 ;//记录移动的个数,为移动过程中显示红框用。权宜之计,望高手提出更好解决方案
//axMapControl2中的事件
private void axMapControl2_OnMouseDown(object sender, IMapControlEvents2_OnMouseDownEvent e)//鹰眼互动
        {
            //IPoint pt = new PointClass();
            pSmallViewerMouseDownPt = new PointClass();
            pSmallViewerMouseDownPt.PutCoords(e.mapX, e.mapY);
            axMapControl1.CenterAt(pSmallViewerMouseDownPt);
            isTrackingSmallViewer = true;
            if (pSmallViewerEnvelope == null)
            {
                pSmallViewerEnvelope = new MoveEnvelopeFeedbackClass();
                pSmallViewerEnvelope.Display = axMapControl2.ActiveView.ScreenDisplay;
                pSmallViewerEnvelope.Symbol = (ISymbol)m_FillSymbol;
            }
            pSmallViewerEnvelope.Start(m_Envelope, pSmallViewerMouseDownPt);
            
        }
       
       private void axMapControl2_OnMouseMove(object sender, IMapControlEvents2_OnMouseMoveEvent e)
        {
            if (isTrackingSmallViewer)
            {
                moveCount++;
                if (moveCount % 4 == 0)//因为一刷新,红框就没了。所以每移动4次就刷新一下,保持红框的连续性。
                    axMapControl2.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewForeground, null, null);
                pSmallViewerMouseDownPt.PutCoords(e.mapX, e.mapY);
                pSmallViewerEnvelope.MoveTo(pSmallViewerMouseDownPt);
            }            
        }
       private void axMapControl2_OnMouseUp(object sender, IMapControlEvents2_OnMouseUpEvent e)
        {
            if (pSmallViewerEnvelope != null)
            {
                m_Envelope = pSmallViewerEnvelope.Stop();
                axMapControl1.Extent = m_Envelope;
                isTrackingSmallViewer = false;               
            }
        }
版权说明

  如果标题未标有<转载、转>等字则属于作者原创,欢迎转载,其版权归作者和博客园共有。 

  作      者:温景良
  文章出处:  或  

分类:  ,
       
0
0
上一篇:
下一篇:
posted @  2008-12-10 15:07   Views( 1116) Comments( 0)   
最新IT新闻:
· 
· 
· 
· 
· 
» 
最新知识库文章:
· 
· 
· 
· 
· 
» 
本文转自
博客园博客,原文链接:http://www.cnblogs.com/wenjl520/archive/2008/12/10/1351970.html,如需转载请自行联系原作者
 
你可能感兴趣的文章
计算机组成与体系结构
查看>>
全新服务器 centos 7.4 配置(三) MongoDB安装配置(简单方式)
查看>>
python 自定义函数
查看>>
自动安装虚拟机
查看>>
linux-日常运维-Linux系统日志
查看>>
20180529
查看>>
linux centos 权限查看,修改
查看>>
第二课:第四讲02_04_Linux文件管理命令详解
查看>>
SCI论文写作技巧
查看>>
学习中的简略笔记小结。
查看>>
我最喜欢的五款手机APP 简直就是生活的小帮手
查看>>
智能硬件、移动内容生态成两大引擎,从百度年报看其多元化发
查看>>
UC伯克利发布一个低成本家居机器人,会叠衣服、会泡咖啡
查看>>
理解孩子的游戏世界
查看>>
通过python-ldap操作管理AD/LDAP用户及组织结构
查看>>
Java面试题总结
查看>>
IOS学习资源收集--开发UI控件相关
查看>>
python大数据之spark:linux上配置ssh无验证登录
查看>>
实验:基于YUM安装的多实例
查看>>
权限用户和文本处理。
查看>>