zoukankan      html  css  js  c++  java
  • ArcGlobe点击IGlobeServerLayer图层读取信息

    ArcGISServer将点图层发布成Globe服务,AE开发中自定义识别工具,读取点数据信息。
    1) 通过Locate方法获取图层对象,图层对象中的SearchOID就是你点中的要素Objectid。
    2) 通过GlobeServer.Identify读取结果集IGlobeServerIdentifyResults。
     
    代码如下:
     public override void OnMouseDown(int Button, int Shift, int X, int Y)
            {
                if (Button != 1) return;
    
                //Get the element that the user selects
                ESRI.ArcGIS.Geometry.IPoint ppPoint = new ESRI.ArcGIS.Geometry.PointClass();
                ESRI.ArcGIS.Geometry.IZAware zAware = ppPoint as ESRI.ArcGIS.Geometry.IZAware;
                zAware.ZAware = true;
                object ppObject;
                object ppOwner;
                globeDisplay.Locate(globeDisplay.ActiveViewer, X, Y, false, false, out ppPoint, out ppOwner, out ppObject);
    
                if (ppPoint == null) return;
    
                if (!(ppOwner is IGlobeServerLayer)) return;
    
                Help_Globe.FlashPoint(ppPoint);
    
    
                gLayer = ppOwner as IGlobeServerLayer;
                IGlobeLayerInfo gLayeInfo = gLayer.GlobeLayerInfo;
    
    
                if (gLayeInfo.Name != "3dd文件中的点图层名称") return;
    
                IGlobeServerIdentifyResults results = gLayer.GlobeServer.Identify(gLayer.GlobeServerLayerID, gLayer.SearchOID, gLayeInfo.Extent.Envelope);
                if (results.Count > 0)
                {
                    IGlobeServerIdentifyResult result = results.get_Element(0);
                    object dwmc = result.Properties.GetProperty("DW_MC");
    
                    if (Convert.IsDBNull(dwmc) || dwmc == null) return;
    
                    FormWuZhongInfo dlg = new FormWuZhongInfo(dwmc.ToString(), dwmc.ToString());
                    dlg.Text = dwmc.ToString();
                    dlg.ShowDialog();
                    
                }
                return;
    
              
    }
    

      

  • 相关阅读:
    SQL语句之DQL数据查询语言(select、desc)
    SQL语句之DML数据操作语言(insert、delete、update)
    SQL语句之DDL跟DCL
    MySQL的命令
    数据库配置文件
    Linux-用户/用户组身份提权
    MYSQL的连接管理与启动关闭流程
    MYSQL权限的管理
    MySQL5.6与MySQL5.7的区别
    MYSQL结构
  • 原文地址:https://www.cnblogs.com/janehlp/p/4221645.html
Copyright © 2011-2022 走看看