• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

gisoracle

  • 博客园
  • 联系
  • 订阅
  • 管理

公告

随笔分类 -  ArcGIS Pro二次开发

上一页 1 2 3 4 5 6 ··· 10 下一页

ArcGIS Pro二次开发
ArcGIS Pro SDK获得线的交点
摘要:Geometry g = GeometryEngine.Instance.Intersection(line1, line2, GeometryDimension.esriGeometry0Dimension); Multipoint resultMultipoint = g as Multipoi 阅读全文

posted @ 2022-06-07 21:32 gisai 阅读(187) 评论(0) 推荐(0)

ArcGIS Pro SDK 分级专题
摘要:List<CIMClassBreak> listClassBreaks = new List<CIMClassBreak> { new CIMClassBreak { Symbol = SymbolFactory.Instance.ConstructPointSymbol(ColorFactory. 阅读全文

posted @ 2022-05-22 21:35 gisai 阅读(120) 评论(0) 推荐(0)

ArcGIS Pro SDK修改注记文本为下面特殊的
摘要:来自:https://community.esri.com/t5/arcgis-pro-sdk-questions/about-text-annotation-format/m-p/835389 internal class ChangeSymbol : Button { protected asy 阅读全文

posted @ 2022-05-16 18:06 gisai 阅读(107) 评论(0) 推荐(0)

ArcGIS Pro SDK二次开发打开属性表
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2022-05-16 11:30 gisai 阅读(350) 评论(0) 推荐(0)

ArcGIS Pro创建要素后自动更新字段值
摘要:{ var mapProjItem = Project.Current.GetItems<MapProjectItem>().FirstOrDefault(item => item.Name.Contains("Map")); if (mapProjItem == null) return; Que 阅读全文

posted @ 2022-05-16 11:23 gisai 阅读(361) 评论(0) 推荐(0)

ArcGIS Pro VB和python二分式
摘要:'设计人:闫磊 Function spacenum(n) str="" For i=0 To n str=str+"_" Next spacenum=str End Function ' FUNCTION STRLEN(STR) Function strlen(str) Dim p_len p_le 阅读全文

posted @ 2022-05-15 11:40 gisai 阅读(390) 评论(0) 推荐(0)

map.GetLocationUnitFormat();
摘要:Name=MeasurementUnit Value=Meter Name=UnitName Value=Meter Name=DisplayName Value=Meter Name=DisplayNamePlural Value=Meters Name=Abbreviation Value=m 阅读全文

posted @ 2022-05-15 11:17 gisai 阅读(58) 评论(0) 推荐(0)

ArcGIS Pro二次开发一键生成生成地球三维,建筑物拉伸三维,Dem三维,洪水淹没效果和实心三维
摘要: 阅读全文

posted @ 2022-05-15 10:00 gisai 阅读(414) 评论(0) 推荐(0)

FeatureLayer的UsesRealWorldSymbolSizes
摘要:FeatureLayer的UsesRealWorldSymbolSizes设置,ExtrusionType Value=Absolute 阅读全文

posted @ 2022-05-15 08:09 gisai 阅读(66) 评论(1) 推荐(0)

ArcGIS Pro sdk判断是否多面体
摘要:ShapeType=esriGeometryMultiPatch 阅读全文

posted @ 2022-05-15 07:41 gisai 阅读(71) 评论(0) 推荐(0)

ArcGIS Pro属性颜色符号化
摘要:/// <summary> /// You must call this method on the MCT! /// </summary> /// <returns></returns> private CIMRenderer CreateUniqueValueRendererUsingColor 阅读全文

posted @ 2022-05-14 21:27 gisai 阅读(268) 评论(0) 推荐(0)

FeatureElevationExpression和FeatureElevationExpressionInfo
摘要:FeatureElevationExpression和FeatureElevationExpressionInfo设置三维 阅读全文

posted @ 2022-05-14 10:18 gisai 阅读(57) 评论(0) 推荐(0)

ArcGIS Pro地图范围和视野范围
摘要:atialReference sr3857 = SpatialReferenceBuilder.CreateSpatialReference(3857); // Builder constructors need to run on the MCT. using (SpatialReferenceB 阅读全文

posted @ 2022-05-13 21:54 gisai 阅读(260) 评论(0) 推荐(0)

ArcGIS Pro创建注记
摘要:You can check out some of these Annotation tools: Annotate Selected Features Convert Labels To Annotation 阅读全文

posted @ 2022-05-13 21:15 gisai 阅读(168) 评论(0) 推荐(0)

ArcGIS Pro注记编辑
摘要:internal class ChangeSymbol : Button { protected async override void OnClick() { var annoLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType< 阅读全文

posted @ 2022-05-13 21:09 gisai 阅读(230) 评论(0) 推荐(0)

ArcGIS Pro删除所有注记
摘要:protected override async void OnClick() { var activeMap = MapView.Active?.Map; if (activeMap == null) return; var location = @"C:/Data/FeatureTest/Fea 阅读全文

posted @ 2022-05-13 21:04 gisai 阅读(746) 评论(0) 推荐(0)

ArcGIS Pro sdk影像裁剪
摘要:/Clip the elevation layer with water body string out_workspace = Project.Current.DefaultGeodatabasePath; string input_feature = Path.Combine(out_works 阅读全文

posted @ 2022-05-13 20:51 gisai 阅读(194) 评论(0) 推荐(0)

AddOverlay和删除
摘要:Skip to content Product Team Enterprise Explore Marketplace Pricing Sign in Sign up Esri / arcgis-pro-sdk-community-samples Public Code Issues 2 Pull 阅读全文

posted @ 2022-05-13 20:31 gisai 阅读(155) 评论(0) 推荐(0)

RemoveElevationSurface失败
摘要:map.RemoveElevationSurface will throw an InvalidOperationException if you try to remove the ground surface. The following code should be used to remov 阅读全文

posted @ 2022-05-13 20:22 gisai 阅读(35) 评论(0) 推荐(0)

GetZsFromSurfaceAsync
摘要:从表面获得 namespace BeforeSketchCompleted { internal class BeforeSketchCompleted : Button { readonly string surfaceName = "Ground"; ArcGIS.Core.Events.Sub 阅读全文

posted @ 2022-05-13 19:45 gisai 阅读(60) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 10 下一页
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3