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

gisoracle

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

公告

随笔分类 -  ArcGIS Pro二次开发

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

ArcGIS Pro二次开发
VS2022中ArcGIS Pro SDK for .NET安装和卸载指南
摘要:VS2022中ArcGIS Pro SDK for .NET安装和卸载指南 安裝 ArcGIS Pro SDK for .NET 升级 ArcGIS Pro SDK for .NET 卸载 ArcGIS Pro SDK for .NET 使用专用图库分发适用于 .NET 的 ArcGIS Pro S 阅读全文

posted @ 2023-01-04 13:31 gisai 阅读(748) 评论(0) 推荐(0)

System.IO.FileNotFoundException:“Could not load file or assembly 'System.Drawing.Common, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. 系统找不到指定的文件。”
该文被密码保护。

posted @ 2023-01-04 12:14 gisai 阅读(2) 评论(0) 推荐(0)

ArcGIS Pro2.8插入公里网
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2022-12-29 19:43 gisai 阅读(201) 评论(0) 推荐(0)

ProConcepts 3.0 Migration Guide,Pro2.8升级ArcGIS Pro3.0
摘要:来自:https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-3.0-Migration-Guide ArcGISPro 3.0 is a breaking change release. The 3.0 API breaking change 阅读全文

posted @ 2022-12-09 22:32 gisai 阅读(547) 评论(0) 推荐(0)

VS2022中ArcGIS Pro SDK for .NET安装和卸载指南
摘要:VS2022中ArcGIS Pro SDK for .NET安装和卸载指南安裝 ArcGIS Pro SDK for .NET升级 ArcGIS Pro SDK for .NET卸载 ArcGIS Pro SDK for .NET使用专用图库分发适用于 .NET 的 ArcGIS Pro SDK概述 阅读全文

posted @ 2022-12-08 21:48 gisai 阅读(699) 评论(0) 推荐(0)

ArcGIS Pro2.8二次升级3.0的注意实现
摘要:PolygonBuilder升级PolygonBuilderEx GeometryDimension升级GeometryDimensionType EnvelopeBuilder升级EnvelopeBuilderEx MapPointBuilder升级MapPointBuilderEx table. 阅读全文

posted @ 2022-12-08 20:38 gisai 阅读(198) 评论(0) 推荐(0)

ArcGIS Python不支持多进程
摘要:ArcGIS Python不支持多进程,会启动多个ArcGIS Pro from multiprocessing import Process p = Process(target=checkone, args=(geometry, FID, iCur, pfeat,), name='checkon 阅读全文

posted @ 2022-11-24 15:58 gisai 阅读(142) 评论(1) 推荐(0)

ArcGIS Pro SDK根据一个坐标系文件生成坐标系
摘要:try { string path = @"c:\60571.prj"; var sText = System.IO.File.ReadAllText(path); SpatialReference sr = SpatialReferenceBuilder.CreateSpatialReferenc 阅读全文

posted @ 2022-10-07 17:36 gisai 阅读(158) 评论(0) 推荐(0)

ArcGIS Pro 修改一个图片element
摘要:1 IEnumerable<LayoutProjectItem> layouts = Project.Current.GetItems<LayoutProjectItem>(); 2 foreach (LayoutProjectItem layoutItem in layouts) 3 if (la 阅读全文

posted @ 2022-10-06 09:40 gisai 阅读(101) 评论(0) 推荐(0)

ArcGIS Pro 二次开发内容对外出售,价格5千,并提供三个月在线QQ和微信辅导
摘要:目录 第1章 界面设置... 9 开发插件... 9 加入自己的选项卡... 9 自己的分组... 10 自定添加右键菜单-地图... 10 自定添加右键菜单-目录右键... 11 软件安装的位置... 11 获得插件的GUID.. 11 获得安装所有插件... 12 状态控制... 13 有其他按 阅读全文

posted @ 2022-10-05 09:42 gisai 阅读(504) 评论(0) 推荐(0)

ArcGIS Pro进度条 You cannot see the progress dialog if you run from the debugger.
摘要:protected override async void OnClick() { using (var progress = new ProgressDialog("Showing Progress", "Canceled", 100, false)) { var status = new Can 阅读全文

posted @ 2022-09-28 16:21 gisai 阅读(124) 评论(0) 推荐(0)

State/condition for selected feature class/table in a geodatabase
摘要:rotected override void OnClick() { if (subscribed) ProjectWindowSelectedItemsChangedEvent.Unsubscribe(OnProjectWindowSelectedItem); else ProjectWindow 阅读全文

posted @ 2022-09-22 22:14 gisai 阅读(62) 评论(0) 推荐(0)

ArcGIS Pro 创建要素类
摘要:/* Copyright 2019 Esri Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License 阅读全文

posted @ 2022-09-21 21:37 gisai 阅读(382) 评论(0) 推荐(0)

ArcGIS Pro Tool,单击显示坐标
摘要:protected override Task HandleMouseDownAsync(MapViewMouseButtonEventArgs e) { //Get the instance of the ViewModel var vm = OverlayEmbeddableControl as 阅读全文

posted @ 2022-09-20 19:32 gisai 阅读(193) 评论(0) 推荐(0)

ArcGIS Pro SDK栅格颜色拉伸
摘要:protected override async void OnClick() { var rasterLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<ImageServiceLayer>().FirstOrDefault() 阅读全文

posted @ 2022-09-19 21:18 gisai 阅读(97) 评论(0) 推荐(0)

ArcGIS Pro 二次开发缓冲区代码
摘要:var valueArray = await QueuedTask.Run(() => { var g = new List<object>() { geometry, }; // Creates a 8000-meter buffer around the geometry object // n 阅读全文

posted @ 2022-09-19 21:00 gisai 阅读(121) 评论(0) 推荐(0)

ArcGIS Pro二次开发 是否有通过SDK打开/激活目录窗格的简单方法?
摘要:protected override void OnClick() { ExecuteProCommand("esri_core_showProjectView"); ExecuteProCommand("esri_core_showProjectDockPane"); } /// <summary 阅读全文

posted @ 2022-09-18 22:38 gisai 阅读(100) 评论(0) 推荐(0)

ArcGIS Pro SDK二次开发目录的刷新
摘要:protected override void OnClick() { var commandId = FrameworkApplication.GetPlugInWrapper(@"esri_core_exitApplicationButton") as ICommand; if (command 阅读全文

posted @ 2022-09-18 22:29 gisai 阅读(134) 评论(0) 推荐(0)

ArcGIS Pro 查询
摘要:var us_states = MapView.Active.Map.GetLayersAsFlattenedList() .OfType<FeatureLayer>().First(lyr => lyr.Name == "US States"); QueuedTask.Run(() => { us 阅读全文

posted @ 2022-09-17 08:33 gisai 阅读(158) 评论(0) 推荐(0)

How to "Activate" a MapFrame in C#
摘要:internal class ActivateMapFrameBtn: Button { protected override void OnClick() { //1. must be on the GUI - dont switch to QueuedTask //2. Layout view 阅读全文

posted @ 2022-09-12 17:21 gisai 阅读(52) 评论(0) 推荐(0)

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