男默女泪,ArcGIS AddIN 编辑逻辑赏析,走过路过,不要错过
看到了一段ESRI写的一个工具,我反编译了一下,学习工具中的几个代码片段
一.
IEditTask task = (this._editor as IEditTaskSearch).get_TaskByUniqueName("GarciaUI_CreateNewFeatureTask");
this._editor.CurrentTask = task;
IEditTask :Provides access to a task that receives notification when the sketch is complete.
IEditTaskSearch: Provides access to members that find edit tasks by name.
常见的EditTask及其名称:(From帮助文档)
|
Edit Task |
UniqueName |
|
Create New Feature |
"GarciaUI_CreateNewFeatureTask" |
|
Reshape Feature |
"GarciaUI_ReshapeFeatureTask" |
|
Cut Polygon Features |
"GarciaUI_CutPolygonFeaturesTask" |
|
Mirror Features |
"GarciaUI_MirrorFeaturesTask" |
|
Extend/Trim Features |
"GarciaUI_ExtendTrimFeaturesTask" |
|
Modify Feature |
"GarciaUI_ModifyFeatureTask" |
|
Calibrate Route Feature |
"RouteEditorUI_CalibrateRouteFeatureTask" |
|
Modify Portion of Line |
"RouteEditorUI_ModifyPortionOfLineTask" |
|
Modify Edge |
"TitusUI_ModifyEdgeTask" |
|
Reshape Edge |
"TitusUI_ReshapeEdgeTask" |
|
Auto Complete Polygon |
"TitusUI_AutoCompletePolygonTask" |
|
Select Features Using a Line |
"GarciaUI_SelectFeaturesUsingLineTask" |
|
Select Features Using an Area |
"GarciaUI_SelectFeaturesUsingPolygonTask" |
|
Create 2-Point Line Features |
"EditTools_Create2PointLineFeaturesTask" |
二.
this._editLayers = this._editor as IEditLayers;
IEditLayers: Provides access to members that control information about layers in the edit session.
The IEditLayers interface exposes members for setting and getting the editor's current layer and current subtype. The current layer (or target layer) determines which layer will contain newly created features. For instance, if you set the target layer to 'Buildings', any new features created will be part of the Buildings layer. Edit tasks and commands that create new features use this property to determine which layer to write out the new features to. For example, the 'Create New Features' task and the 'Union' command both create new features in the target layer.
说明:IEditLayers接口用于管理编辑会话期间的图层
可以用来获取或设置编辑器的当前图层或subtype(不知为何物),当前图层决定了哪个图层用于新建要素
三.
if (this._lineFeedback == null)
{
this._lineFeedback = new NewTextBezierCurveFeedbackClass();
this._lineFeedback.Display = this._editor.Display;
this._lineFeedback.Start(this._mousePoint, this._editor.Map.ReferenceScale);
}
else
{
this._lineFeedback.AddPoint(this._mousePoint);
}
INewLineFeedback: Provides access to members that control the new line display feedback.
The NewLineFeedback coclass allows the user to form a new Polyline geometry on the display. While the feedback is being used, the line shown on the screen is a series of segments made up of straight lines between each of the points clicked by the user. If the user opts to add no intermediate vertices, that is, they simply click at the start point (Start), move the mouse (MoveTo), and double-click at the end (AddPoint and Stop), then a polyline with only one segment will be generated.
同上,还有其他很多INew***Feedback接口与对象,可以实现辅助绘制功能
以前写Tool时,经常使用Graphic对象,进行绘制和保存临时创建的对象,这么做需要做的工作很多,比如graphic对象的管理,以及Symbol符号的设置,绘制线时,代码中需要考虑以绘制的线与当前鼠标的节点所组成的图形,并进行动态更新绘制,逻辑复杂的很.
有了上述接口与对象,可以直接调用,通过AddPoint(),Stop()等方法,轻松实现对象的绘制与交互.
大体实现逻辑,在mousedown事件中,调用Start(),AddPoint(),以添加节点
在MouseMove事件中,调用MoveTo(),以更新
在DoubleClick事件中,调用Stop(),以结束绘制
四.关于捕捉逻辑
ISnapEnvironment environment = this._editor as ISnapEnvironment;
if (this._mousePoint != null)
{
this._editor.InvertAgent(this._mousePoint, );
}
this._mousePoint = this._editor.Display.DisplayTransformation.ToMapPoint(arg.X, arg.Y);
if (KeyboardInfo.GetKeyState(Keys.Space).IsPressed)
{
environment.SnapPoint(null);
}
else
{
environment.SnapPoint(this._mousePoint);
}
this._editor.InvertAgent(this._mousePoint, );
if (this._lineFeedback != null)
{
this._lineFeedback.MoveTo(this._mousePoint);
}
之前写过一篇关于如何调用捕捉的帖子,当时只顾为了实现捕捉,没有进一步优化
上述代码中在MouseMove事件中判断了当前是否按住了 空格键,以实现在按住空格键时临时不捕捉的效果,
与ArcMap的使用习惯一致
男默女泪,ArcGIS AddIN 编辑逻辑赏析,走过路过,不要错过的更多相关文章
- [蘑菇街] 搜索、算法团队招募牛人啦-年底了走过路过不要错过 - V2EX
[蘑菇街] 搜索.算法团队招募牛人啦-年底了走过路过不要错过 - V2EX [蘑菇街] 搜索.算法团队招募牛人啦-年底了走过路过不要错过
- 上海投行需要一大群JAVA,C++,C#,UNIX.走过路过不要错过!过完年想换工作看过来初级资深都有 - V2EX
上海投行需要一大群JAVA,C++,C#,UNIX.走过路过不要错过!过完年想换工作看过来初级资深都有 - V2EX 上海投行需要一大群JAVA,C++,C#,UNIX.走过路过不要错过!过完年想换工 ...
- 走过路过不要错过 包你一文看懂支撑向量机SVM
假设我们要判断一个人是否得癌症,比如下图:红色得癌症,蓝色不得. 看一下上图,要把红色的点和蓝色的点分开,可以画出无数条直线.上图里黄色的分割更好还是绿色的分割更好呢?直觉上一看,就是绿色的线更好.对 ...
- 走过路过不要错过~教你用java抓取网页中你想要的东东~~
学习了正则之后,打算用java玩一玩,所以就决定用它来实现一个好玩的idea import java.io.BufferedReader; import java.io.IOException; im ...
- 再见Jenkins,从Gitlab代码提交到k8s服务持续交付只需七毛三(走过路过不要错过)
Gitlab runner 快速搭建CICD pipeline 背景 日常开发中,相信大家已经做了很多的自动化运维环境,用的最多的想必就是利用Jenkins实现代码提交到自动化测试再到自动化打包,部署 ...
- ArcGIS Add-in插件开发从0到1及实际案例分享
同学做毕设,要求我帮着写个ArcGIS插件,实现功能为:遍历所有图斑,提取相邻图斑的公共边长及其他属性(包括相邻图斑的ID),链接到属性表中.搞定后在这里做个记录.本文分两大部分: ArcGIS插件开 ...
- ArcGIS AddIN开发异常之--“ValidateAddInXMLTask”任务意外失败
ArcGIS AddIN开发时,产生如下异常错误 2 “ValidateAddInXMLTask”任务意外失败.System.NullReferenceException: 未将对象引用设置到对象的 ...
- ArcGIS学习记录—ArcGIS ArcMap编辑状态中线打断的问题
摘要:在处理数据时,我们经常会遇到线打断的问题,比如需要指定在线上某处打断线,或者新建网络数据集时需要在线的交点处打段线等等.现将桌面版中我所遇到的线打断的工具总结如下: 在ArcGIS矢量处理数据时 ...
- ArcGIS Add-In调试无法重新生成
在调试ArcGIS Add-In时,出现错误:无法注册程序集"……\Projects\ArcGISAddIn\ArcGISAddIn\bin\Debug\ArcGISAddIn.dll&qu ...
随机推荐
- Docker制作基础镜像
Docker镜像制作 方式一:手动运行一个容器,做好所有配置,然后把容器提交成一个镜像 方式二:使用DockerFile 示例1:做一个yum安装的nginx镜像 - 运行并进入一个centos容器: ...
- SpringBoot系列: Pebble模板引擎语法介绍
本文基于Pebble官方文档, 对pebble的语法做一些介绍. ===============================Pebble 官方资料========================= ...
- Java String相关
一.String类的常用方法 1. int indexOf(String s) 字符串查找 2. int lastIndexOf(String str) 3. char charAt(int inde ...
- luogu 3166 组合与gcd(数三角形)结论
在n*m的点格图中选取三个点满足三角形的个数 结论:点(x1,y1)和(x2,y2) 中间有gcd(x2-x1,y2-y1)+1个和两点连成的线段直线共线 那么大力枚举 x2-x1和y2-y1,然后发 ...
- UE4 AR开发笔记
1.基础使用 ArToolKit:生成图片特征,可以用彩图.(图片先灰化) genTexData效准相机.由于有的相机照相有弧度. calib_camera 2.使用UE4ARPlugins做 ...
- 分别基于TensorFlow、PyTorch、Keras的深度学习动手练习项目
×下面资源个人全都跑了一遍,不会出现仅是字符而无法运行的状况,运行环境: Geoffrey Hinton在多次访谈中讲到深度学习研究人员不要仅仅只停留在理论上,要多编程.个人在学习中也体会到单单的看理 ...
- python3 使用pip安装(命令行中)失败或 “not a supported wheel” 解决方案!
原因1: 安装的不是对应python版本的库,下载的库名中cp36代表python3.6,其它同理. 原因2:(我遇到的情况----下载的是对应版本的库,然后仍然提示不支持当前平台) 百度了一下,说法 ...
- pyhton之Reportlab模块
reportlab模块是用python语言生成pdf文件的模块 安装:pip install reportlab 模块默认不支持中文,如果使用中文需要注册 1.注册中文字体 下载自己需要的.ttf字体 ...
- ActiveMQ简单介绍及安装
消息中间件 我们简单的介绍一下消息中间件,对它有一个基本认识就好,消息中间件(MOM:Message Orient middleware). 消息中间件有很多的用途和优点: 1. 将数据从一个应用程序 ...
- Jquery点击div之外的地方隐藏当前div
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script sr ...