AE获得鼠标选择的图层信息

使用SelectionChanged事件

   private void axMapControl_OnSelectionChanged(object sender, EventArgs e)
    {
        if (iMapAction == 1)
        {
            //---------------------------------------Identify--------------------------------------------------//
            ITableSelection pTable;
            ILayer pLayer;
            string pointId = string.Empty;
            //获得选择的点
            for (int i = 0; i < axMapControl.LayerCount; i++)
            {
                pTable = (ITableSelection)axMapControl.get_Layer(i);
                pLayer = axMapControl.get_Layer(i);
                if (pLayer.Name == "newpoint")
                {
                    pointId = GetFieldValue(AddSelection(pTable.SelectionSet, pLayer.Name));
                    break;
                }
                pTable.Clear();
            }
            //判断点是不是为空
            if (!string.IsNullOrEmpty(pointId))
            {
                //查询是否存在于站点集合中
                if (hAreaIdList.IndexOf(pointId) != -1)
                {
                    if (_pfrmRealTimeData == null)
                    {
                        _pfrmRealTimeData = new frmRealTimeData(pointId);
                        _pfrmRealTimeData.ShowDialog();
                    }
                    else
                    {
                        //如果不是第一点击
                        if (pointIdList.Count > 1)
                        {
                            _pfrmRealTimeData = null;
                            _pfrmRealTimeData = new frmRealTimeData(pointId);
                            _pfrmRealTimeData.ShowDialog();
                        }
                    }
                    if (pointIdList.Count < 5)
                        pointIdList.Add(pointId);
                }
            }
        }
    }

 

 /// <summary>
    /// 获得选择的图层
    /// </summary>
    /// <param name="pSelection"></param>
    /// <param name="strLayer"></param>
    /// <returns></returns>
    private ArrayList AddSelection(ISelectionSet pSelection, string strLayer)
    {
        IQueryFilter pFilter = new QueryFilterClass();
        ICursor pCursor;
        pSelection.Search(pFilter, false, out pCursor);
        ESRI.ArcGIS.Geodatabase.IRow pRow;
        pRow = pCursor.NextRow();
        ArrayList Keys = new ArrayList();
        Keys.Add(strLayer);
        if (pRow != null)
        {
            IRowBuffer pBuffer;
            do
            {
                pBuffer = (IRowBuffer)pRow;
                Keys.Add(pBuffer.get_Value(0));
                pRow = pCursor.NextRow();
            } while (pRow != null);
        }
        return Keys;
    }

    /// <summary>
    /// 获得节点的值
    /// </summary>
    /// <param name="list"></param>
    /// <returns></returns>
    private string GetFieldValue(ArrayList list)
    {
        string pointId = string.Empty;
        if (list.Count > 1)
        {
            string strLayer = string.Empty;
            strLayer = list[0].ToString();
            for (int j = 1; j < list.Count; j++)
            {
                IFeatureLayer pLayer;
                int i;
                for (i = 0; i < axMapControl.Map.LayerCount; i++)
                {
                    if (axMapControl.Map.get_Layer(i).Name == strLayer)
                        break;
                }
                pLayer = (IFeatureLayer)axMapControl.Map.get_Layer(i);
                IFeatureCursor pCursor;
                IQueryFilter pFilter = new QueryFilterClass();

                pFilter.WhereClause = " FID = " + list[i];
                pCursor = pLayer.Search(pFilter, false);
                IFeature pFeature;
                IRowBuffer pRow;
                pFeature = pCursor.NextFeature();
                if (pFeature != null)
                {
                    pRow = (IRowBuffer)pFeature;
                    for (int k = 0; k < pRow.Fields.FieldCount; k++)
                    {
                        if (pRow.Fields.get_Field(k).Name == "pointid")
                        {
                            pointId = pRow.get_Value(k).ToString();
                            break;
                        }
                    }
                }
            }
        }
        return pointId;
    }

版权说明

  如果标题未标有<转载、转>等字则属于作者原创,欢迎转载,其版权归作者和博客园共有。
  作      者:温景良
  文章出处:http://wenjl520.cnblogs.com/  或  http://www.cnblogs.com/

posted @ 2008-12-25 17:06 温景良(Jason) Views( 1512) Comments( 1) Edit 收藏

  
#1楼 2055078 2011/3/25 20:36:06 2011-03-25 20:36 | kuaiGIS  
你的felx的文章很喜欢那里弄的啊

公告

hidden hit counter
 
本文转自 我的程序人生博客园博客,原文链接: http://www.cnblogs.com/wenjl520/archive/2008/12/25/1362455.html,如需转载请自行联系原作者
 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值