1.AddInEditorExtension

功能描述:编辑器扩展,实现在编辑要素,对编辑事件的监听,及对新创建的要素的处理

核心代码:

  1. void Events_OnStartEditing()
  2. {
  3. //Since features of shapefiles, coverages etc cannot be validated, ignore wiring events for them
  4. if (ArcMap.Editor.EditWorkspace.Type != esriWorkspaceType.esriFileSystemWorkspace)
  5. {
  6. //wire OnCreateFeature Edit event
  7. Events.OnCreateFeature += new IEditEvents_OnCreateFeatureEventHandler(Events_OnCreateChangeFeature);
  8. //wire onChangeFeature Edit Event
  9. Events.OnChangeFeature += new IEditEvents_OnChangeFeatureEventHandler(Events_OnCreateChangeFeature);
  10. }
  11. }
  12. //Invoked at the end of Editor session (Editor->Stop Editing)
  13. void Events_OnStopEditing(bool Save)
  14. {
  15. //Since features of shapefiles, coverages etc cannot be validated, ignore wiring events for them
  16. if (ArcMap.Editor.EditWorkspace.Type != esriWorkspaceType.esriFileSystemWorkspace)
  17. {
  18. //unwire OnCreateFeature Edit event
  19. Events.OnCreateFeature -= new IEditEvents_OnCreateFeatureEventHandler(Events_OnCreateChangeFeature);
  20. //unwire onChangeFeature Edit Event
  21. Events.OnChangeFeature -= new IEditEvents_OnChangeFeatureEventHandler(Events_OnCreateChangeFeature);
  22. }
  23. }
  24.  
  25. void Events_OnCreateChangeFeature(ESRI.ArcGIS.Geodatabase.IObject obj)
  26. {
  27. IFeature inFeature = (IFeature)obj;
  28. if (inFeature.Class is IValidation)
  29. {
  30. IValidate validate = (IValidate)inFeature;
  31. string errorMessage;
  32. //Validates connectivity rules, relationship rules, topology rules etc
  33. bool bIsvalid = validate.Validate(out errorMessage);
  34. if (!bIsvalid)
  35. {
  36. System.Windows.Forms.MessageBox.Show("Invalid Feature\n\n" + errorMessage);
  37. }
  38. else
  39. {
  40. System.Windows.Forms.MessageBox.Show("Valid Feature");
  41. }
  42. }
  43. }

注:具体工具的ProgId在这里查询 https://www.cnblogs.com/gisoracle/p/5971974.html

2.AddInExtensionPersist

功能描述:ArcMap扩展,实现对ArcMap事件的监听

比如启动,加载,保存等事件

3.AddInReportManager

功能说明:ESRI自带的一种报表导出方案

主要接口IReportDataSource,IReportTemplate

需要提前做好.rlf文件

4.AddInTimeSeriesGraph

功能描述:折线图 Tool

示例数据路径:C:\Program Files (x86)\ArcGIS\DeveloperKit10.1\Samples\data\StreamflowDateTime

相关接口

IIdentify :Provides access to members that identify features,相关矢量图层

IDisplayTable :Provides access to members that work with the display table associated with a standalone table. 该接口包含Joined 字段

IFeatureLayerDefinition:

ILookupSymbol .LookupSymbol ():Returns a reference to the renderer's symbol for the input feature.查询某个要素的Symbol

IDataGraphWindow2 :Provides access to members that control the DataGraph Window. ESRI自带的专题图窗口,可以使用下述代码调用显示

  1. pDGWin = new DataGraphWindowClass();
  2. pDGWin.DataGraphBase = pDataGraphBase;
  3. pDGWin.Application = ArcMap.Application;
  4. pDGWin.Show(true);
  5.  
  6. pDataGraphs.AddDataGraph(pDataGraphBase);

设置Title,坐标轴显示内容等

  1. pDataGraphT = new DataGraphTClass();
  2. pDataGraphBase = (IDataGraphBase)pDataGraphT;
  3.  
  4. // load template from <ARCGISHOME>\GraphTemplates\
  5. string strPath = null;
  6. strPath = Environment.GetEnvironmentVariable("ARCGISHOME");
  7. try
  8. {
  9. pDataGraphT.LoadTemplate(strPath + @"GraphTemplates\timeseries.tee");
  10. }
  11. catch
  12. { }
  13.  
  14. // graph, axis and legend titles. Substitute them for different input layer
  15. pDataGraphT.GeneralProperties.Title = "Daily Streamflow for Guadalupe Basin in 1999";
  16. pDataGraphT.LegendProperties.Title = "Monitoring Point";
  17. pDataGraphT.get_AxisProperties().Title = "Streamflow (cfs)";
  18. pDataGraphT.get_AxisProperties().Logarithmic = true;
  19. pDataGraphT.get_AxisProperties().Title = "Date";
  20. pDataGraphBase.Name = layerName;

设置绘图内容:

  1. ISeriesProperties pSP = null;
  2. pSP = pDataGraphT.AddSeries("line:vertical");
  3. pSP.ColorType = esriGraphColorType.esriGraphColorCustomAll;
  4. pSP.CustomColor = pSymbol.Color.RGB;
  5. pSP.WhereClause = whereClause;
  6. pSP.InLegend = true;
  7. pSP.Name = gageID;
  8.  
  9. pSP.SourceData = pLayer;
  10. pSP.SetField(, timefldName);
  11. pSP.SetField(, dataFldName);
  12. IDataSortSeriesProperties pSortFlds = null;
  13. pSortFlds = (IDataSortSeriesProperties)pSP;
  14. int idx = ;
  15. pSortFlds.AddSortingField(timefldName, true, ref idx);
  16.  
  17. pDataGraphBase.UseSelectedSet = true;
  18.  
  19. ITrackCancel pCancelTracker = null;
  20. pCancelTracker = new CancelTracker();
  21. pDataGraphT.Update(pCancelTracker);

其他代码片段:

以下代码实现在检索时,先检测定义查询的Sql语句,如果有内容,则与新的查询语句And,没有,则直接使用新的查询语句

  1. IFeatureLayerDefinition pFeatureLayerDef = null;
  2. pFeatureLayerDef = (IFeatureLayerDefinition)pLayer;
  3. string definitionExpression = null;
  4. definitionExpression = pFeatureLayerDef.DefinitionExpression;
  5.  
  6. string whereClause = null;
  7. if (definitionExpression == "")
  8. whereClause = "[" + gageIDFldName + "] = '" + gageID + "'";
  9. else
  10. whereClause = "[" + gageIDFldName + "] = '" + gageID + "' AND " + definitionExpression;

5.AlgorithmicColorRamp

功能说明:

接口:

IContentsView: Provides access to members that control table of contents views,

Used to manage a contents view. The tabs in ArcMap's Table of Contents (TOC) are examples of a contents view.

示例用法:判断TOC中选中的内容

  1. IContentsView ContentsView = null;
  2. ContentsView = ArcMap.Document.CurrentContentsView;
  3. if (ContentsView is TOCDisplayView)
  4. {
  5. if (ContentsView.SelectedItem is DBNull)
  6. {
  7. //
  8. // If we don't have anything selected.
  9. //
  10. MessageBox.Show("SelectedItem is Null C#." + "Select a layer in the Table of Contents.", "No Layer Selected", MessageBoxButtons.OK, MessageBoxIcon.Information);
  11. return;
  12. }
  13. //
  14. // Get the selected Item.
  15. //
  16. VarSelectedItem = ContentsView.SelectedItem;
  17. //
  18. // Selected Item should implement the IGeoFeatureLayer interface - therefore we
  19. // have selected a feature layer with a Renderer property (Note: Other interfaces
  20. // also have a Renderer property, which may behave differently.
  21. //
  22. if (VarSelectedItem is IGeoFeatureLayer)
  23. {
           //....
          }

6.AngleAngleConstructor

接口

IEditSketch3:Provides access to members that access and manipulate the edit sketch.

2.Brushing

ArcGIS AddIN Sample学习笔记的更多相关文章

  1. arcgis for flex 学习笔记(一)

    初步认识 地图由图层.要素.样式等组成.地图上有N个图层,图层上有N个要素,每个要素可以存放点.线.面等,每个要素可以设置样式,如果显示图片.或文字均可以先创建一个mxml组件,然后设置到要素上. 面 ...

  2. ArcGIS JS 学习笔记1 用ArcGIS JS 实现仿百度地图的距离量测和面积量测

    一.开篇 在博客注册了三年,今天才决定写第一篇博客,警告自己不要懒!!! 二.关于ArcGIS JS 版本选择 在写这篇博客时ArcGIS JS 4.0正式版已经发布.它和3.x版本的不同是,Map不 ...

  3. ArcGIS API for JavaScript 4.2学习笔记[1] 显示地图

    ArcGIS API for JavaScript 4.2直接从官网的Sample中学习,API Reference也是从官网翻译理解过来,鉴于网上截稿前还没有人发布过4.2的学习笔记,我就试试吧. ...

  4. box2dweb 学习笔记--sample讲解

    前言: 之前博文"台球游戏的核心算法和AI(1)" 中, 提到过想用HTML5+Box2d来编写实现一个台球游戏. 以此来对比感慨一下游戏物理引擎的巨大威力. 做为H5+box2d ...

  5. ArcGIS API for Silverlight学习笔记

    ArcGIS API for Silverlight学习笔记(一):为什么要用Silverlight API(转) 你用上3G手机了吗?你可能会说,我就是喜欢用nokia1100,ABCDEFG跟我都 ...

  6. ArcGIS API for JavaScript 4.2学习笔记[0] AJS4.2概述、新特性、未来产品线计划与AJS笔记目录

    放着好好的成熟的AJS 3.19不学,为什么要去碰乳臭未干的AJS 4.2? 4.2全线基础学习请点击[直达] 4.3及更高版本的补充学习请关注我的博客. ArcGIS API for JavaScr ...

  7. ArcGIS API for JavaScript 4.2学习笔记[21] 对3D场景上的3D要素进行点击查询【Query类学习】

    有人问我怎么这个系列没有写自己做的东西呢? 大哥大姐,这是"学习笔记"啊!当然主要以解读和笔记为主咯. 也有人找我要实例代码(不是示例),我表示AJS尚未成熟,现在数据编辑功能才简 ...

  8. 面图层拓扑检查和错误自动修改—ArcGIS案例学习笔记

    面图层拓扑检查和错误自动修改-ArcGIS案例学习笔记 联系方式:谢老师,135_4855_4328,xiexiaokui#139.com 数据源: gis_ex10\ex01\parcel.shp, ...

  9. 计算平面面积和斜面面积-ArcGIS案例学习笔记

    计算平面面积和斜面面积-ArcGIS案例学习笔记 联系方式:谢老师,135_4855_4328,xiexiaokui#139.com 数据:实验数据\Chp8\Ex5\demTif.tif 平面面积= ...

随机推荐

  1. 03、操作RDD(transformation和action案例实战)

    1.transformation和action介绍 Spark支持两种RDD操作:transformation和action.transformation操作会针对已有的RDD创建一个新的RDD:而a ...

  2. Linux系统复制文件/文件夹到远程服务器

    从一个服务器复制文件到另一个服务器,或者从本地到远程复制是 Linux 管理员的日常任务之一. 我觉得不会有人不同意,因为无论在哪里这都是你的日常操作之一.有很多办法都能处理这个任务,我们试着加以概括 ...

  3. PL/SQL学习笔记之日期时间

    一:PL/SQL时间相关类型 PL/SQL提供两个和日期时间相关的数据类型: 日期时间(Datetime)数据类型 时间间隔类型 二:日期时间类型 datetime数据类型有: DATE TIMEST ...

  4. Xcode9.2打包图片显示异常解决方案

    链接:https://www.jianshu.com/p/ca0bbb403143來源:简书 在使用Xcode9.2适配iPhone X的过程中遇到了部分图片显示异常(不显示或花掉)的问题.主要分两种 ...

  5. Charles配置问题

    1. 手机访问chls.pro/ssl下载证书时候,用常用安卓手机不同的浏览器(可以多试几种浏览器) 会出现两种情况,一种是直接打开下载getssl.crt文件 一种是没有反应,直接打开网页了 这时候 ...

  6. 【转载】VMware虚拟机NAT模式网络配置图文教程

    原文:https://blog.csdn.net/dingguanyi/article/details/77829085 一.引言 在Windows上搭建集群实验环境时,为能够让集群结点之间相互通信, ...

  7. 基于Kafka的生产者消费者消息处理本地调试

    (尊重劳动成果,转载请注明出处:http://blog.csdn.net/qq_25827845/article/details/68174111冷血之心的博客) Kafka下载地址:http://d ...

  8. 【iCore4 双核心板_ARM】例程三十八:DSP MATH库测试

    实验现象: 核心代码: int main(void) { /* USER CODE BEGIN 1 */ int i,j; int res; ]; ; /* USER CODE END 1 */ /* ...

  9. 使用import scope解决maven继承(单)问题<转>

    测试环境 maven 3.3.9 想必大家在做SpringBoot应用的时候,都会有如下代码: <parent> <groupId>org.springframework.bo ...

  10. 简化实现动态行列转置的SQL

    动态行列转换的计算在实际业务中非经常见,网上各类技术论坛上都有讨论,比方以下这些问题: http://www.iteye.com/problems/87788 http://bbs.csdn.net/ ...