ArcGIS Pro SDK (七)编辑 6 检查器

ArcGIS Pro SDK (七)编辑 6 检查器

目录

  • [ArcGIS Pro SDK (七)编辑 6 检查器](#ArcGIS Pro SDK (七)编辑 6 检查器)
    • [1 将要素从图层加载到检查器中](#1 将要素从图层加载到检查器中)
    • [2 将地图选择加载到检查器中](#2 将地图选择加载到检查器中)
    • [3 获取所选要素的属性值](#3 获取所选要素的属性值)
    • [4 将地图选择加载到检查器并更改属性](#4 将地图选择加载到检查器并更改属性)
    • [5 使用检查器获取图层方案](#5 使用检查器获取图层方案)
    • [6 添加验证](#6 添加验证)

环境:Visual Studio 2022 + .NET6 + ArcGIS Pro SDK 3.0

1 将要素从图层加载到检查器中

csharp 复制代码
// 获取地图中的第一个要素图层
var firstFeatureLayer = ArcGIS.Desktop.Mapping.MapView.Active.Map.GetLayersAsFlattenedList().
    OfType<ArcGIS.Desktop.Mapping.FeatureLayer>().FirstOrDefault();

// 创建Inspector类的实例
var inspector = new ArcGIS.Desktop.Editing.Attributes.Inspector();
// 将具有ObjectID 'oid' 的要素加载到Inspector中
await inspector.LoadAsync(firstFeatureLayer, oid);

2 将地图选择加载到检查器中

csharp 复制代码
// 获取地图中当前选择的要素
var selectedFeatures = ArcGIS.Desktop.Mapping.MapView.Active.Map.GetSelection();
// 获取第一个图层及其对应的选择要素的OID列表
var firstSelectionSet = selectedFeatures.ToDictionary().First();

// 创建Inspector类的实例
var inspector = new ArcGIS.Desktop.Editing.Attributes.Inspector();
// 使用对象ID列表将选定的要素加载到Inspector中
await inspector.LoadAsync(firstSelectionSet.Key, firstSelectionSet.Value);

3 获取所选要素的属性值

csharp 复制代码
QueuedTask.Run(() =>
               {
                   // 获取地图中当前选择的要素
                   var selectedFeatures = ArcGIS.Desktop.Mapping.MapView.Active.Map.GetSelection();

                   // 获取第一个图层及其对应的选择要素的OID列表
                   var firstSelectionSet = selectedFeatures.ToDictionary().First();

                   // 创建Inspector类的实例
                   var inspector = new ArcGIS.Desktop.Editing.Attributes.Inspector();

                   // 使用对象ID列表将选定的要素加载到Inspector中
                   inspector.Load(firstSelectionSet.Key, firstSelectionSet.Value);

                   // 获取属性值
                   var pscode = inspector["STATE_NAME"];
                   var myGeometry = inspector.Shape;
               });

4 将地图选择加载到检查器并更改属性

csharp 复制代码
// 获取地图中当前选择的要素
var selectedFeatures = ArcGIS.Desktop.Mapping.MapView.Active.Map.GetSelection();
// 获取第一个图层及其对应的选择要素的OID列表
var firstSelectionSet = selectedFeatures.ToDictionary().First();

// 创建Inspector类的实例
var inspector = new ArcGIS.Desktop.Editing.Attributes.Inspector();
// 使用对象ID列表将选定的要素加载到Inspector中
await inspector.LoadAsync(firstSelectionSet.Key, firstSelectionSet.Value);

// 为字段 "Description" 分配新的属性值
// 如果加载了多个要素,更改将应用于所有要素
inspector["Description"] = "The new value.";
// 作为编辑操作应用更改 - 但没有撤销/重做
await inspector.ApplyAsync();

5 使用检查器获取图层方案

csharp 复制代码
QueuedTask.Run(() =>
               {
                   var firstFeatureLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<ArcGIS.Desktop.Mapping.FeatureLayer>().FirstOrDefault();

                   // 创建Inspector类的实例
                   var inspector = new ArcGIS.Desktop.Editing.Attributes.Inspector();

                   // 加载图层
                   inspector.LoadSchema(firstFeatureLayer);

                   // 迭代属性,查看属性
                   foreach (var attribute in inspector)
                   {
                       var fldName = attribute.FieldName;
                       var fldAlias = attribute.FieldAlias;
                       var fldType = attribute.FieldType;
                       int idxFld = attribute.FieldIndex;
                       var fld = attribute.GetField();
                       var isNullable = attribute.IsNullable;
                       var isEditable = attribute.IsEditable;
                       var isVisible = attribute.IsVisible;
                       var isSystemField = attribute.IsSystemField;
                       var isGeometryField = attribute.IsGeometryField;
                   }
               });

6 添加验证

csharp 复制代码
var insp = new Inspector();
insp.LoadSchema(featLayer);
var attrib = insp.Where(a => a.FieldName == "Mineral").First();

attrib.AddValidate(() =>
                   {
                       if (attrib.CurrentValue.ToString() == "Salt")
                           return Enumerable.Empty<ArcGIS.Desktop.Editing.Attributes.Attribute.ValidationError>();
                       else return new[] { ArcGIS.Desktop.Editing.Attributes.Attribute.ValidationError.Create("Error", ArcGIS.Desktop.Editing.Attributes.Severity.Low) };
                   });
相关推荐
钢铁男儿1 小时前
C# 委托和事件(事件)
开发语言·c#
喜-喜1 小时前
C# HTTP/HTTPS 请求测试小工具
开发语言·http·c#
susan花雨3 小时前
winfrom项目,引用EPPlus.dll实现将DataTable 中的数据保存到Excel文件
c#
墨笺染尘缘4 小时前
Unity——鼠标是否在某个圆形Image范围内
unity·c#·游戏引擎
小野猫子5 小时前
mapbox加载geojson,鼠标移入改变颜色,设置样式以及vue中的使用
gis·mapbox
code_shenbing7 小时前
C# 操作 文件
开发语言·c#
code_shenbing8 小时前
基于 WPF 平台使用纯 C# 实现动态处理 json 字符串
c#·json·wpf
pchmi11 小时前
C# OpenCV机器视觉:红外体温检测
人工智能·数码相机·opencv·计算机视觉·c#·机器视觉·opencvsharp
m0_7482480212 小时前
【MySQL】C# 连接MySQL
数据库·mysql·c#
鸿业远图科技13 小时前
【吉林乡镇界】面图层shp格式arcgis数据乡镇名称和编码wgs84无偏移内容测评
arcgis