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

gisoracle

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

公告

随笔分类 -  ArcGIS Pro二次开发

上一页 1 ··· 5 6 7 8 9 10 下一页

ArcGIS Pro二次开发
ArcGIS Pro新建一个布局
摘要:https://developers.arcgis.com/labs/pro/build-a-map-layout/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using 阅读全文

posted @ 2020-03-14 00:19 gisai 阅读(924) 评论(0) 推荐(0)

ArcGIS Pro注记操作 https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Editing-Annotation#creating-annotation-features
摘要:ProConcepts Editing Annotation Jump to bottom uma2526 edited this page on 6 Feb · 8 revisions This concepts document covers special considerations for 阅读全文

posted @ 2020-03-14 00:10 gisai 阅读(733) 评论(0) 推荐(0)

ArcGIS Pro二次开发获得符号库的符号
摘要:1 string customStyleToAdd = @"F:\2020book\toolforpro\MyProject3\ed-fh.stylx"; 2 //AsyncMethod(customStyleToAdd); 3 4 5 StyleProjectItem style = Projec 阅读全文

posted @ 2020-03-13 23:48 gisai 阅读(971) 评论(1) 推荐(0)

ArcGIS Pro二次开发-条件查询
摘要:ArcGIS Pro学习加微信公众号 我的微信公众号 //searching and returning number of features where value in 'Class' field in 'city' QueryFilter qf = new QueryFilter() { Wh 阅读全文

posted @ 2020-03-13 22:56 gisai 阅读(834) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得地图的信息和打开图层
摘要:Map map = MapView.Active.Map; IEnumerable<Layer> layers = map.GetLayersAsFlattenedList(); //.Where(l => l.Name.Contains("world")) foreach (Layer lyr i 阅读全文

posted @ 2020-03-13 22:51 gisai 阅读(780) 评论(0) 推荐(0)

ArcGIS Pro二次开发-创建新的地图
摘要:// create custom basemap in your current project Map basemap = null; Task task = QueuedTask.Run(() => { basemap =MapFactory.Instance.CreateMap("gisora 阅读全文

posted @ 2020-03-13 22:39 gisai 阅读(422) 评论(0) 推荐(0)

ArcGIS Pro二次开发-打开已存在的地图
摘要:// open an existing map var mapProjectItems = Project.Current.GetItems<MapProjectItem>(); var mapProjectItem = mapProjectItems.FirstOrDefault(mpi => m 阅读全文

posted @ 2020-03-13 22:27 gisai 阅读(467) 评论(0) 推荐(0)

ArcGIS Pro设置当前地图的背景底图
摘要:Map map = MapView.Active.Map; QueuedTask.Run(() => { map.SetBasemapLayers(Basemap.Gray); }); 阅读全文

posted @ 2020-03-13 22:13 gisai 阅读(1875) 评论(0) 推荐(0)

ArcGIS Pro二次开发属性更新,把所有选择的ID为1
摘要:public void UpdateValues() { // This sample is intended for use with a featureclass with a default text field named "Description". // You can replace 阅读全文

posted @ 2020-03-13 21:58 gisai 阅读(430) 评论(0) 推荐(0)

ArcGIS Pro二次开发-设置地图和第一图层的坐标系一致
摘要:SpatialReference spatialReference = MapView.Active.Map.Layers[0].GetSpatialReference(); MapView.Active.Map.SetSpatialReference(spatialReference); 阅读全文

posted @ 2020-03-13 21:41 gisai 阅读(458) 评论(0) 推荐(0)

ArcGIS Pro二次开发-执行已有的命令
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-12 16:05 gisai 阅读(336) 评论(0) 推荐(0)

ArcGIS Pro二次开发执行GP工具
摘要:using System; using System.Collections.Generic; using System.Linq; //using System.Windows; //using System.Windows.Forms; using System.Text; using Syst 阅读全文

posted @ 2020-03-12 12:33 gisai 阅读(430) 评论(0) 推荐(0)

ArcGIS Pro二次开发-获得一个栅格
摘要:/// <summary> /// Open a Raster Dataset given a folder and a dataset name. /// </summary> /// <param name="folder">Full path to the folder containing 阅读全文

posted @ 2020-03-12 11:24 gisai 阅读(327) 评论(0) 推荐(0)

ArcGIS Pro二次开发-添加一个栅格数据到当前窗口
摘要:using System;using System.Collections.Generic;using System.Linq;//using System.Windows;//using System.Windows.Forms; using System.Text; using System.T 阅读全文

posted @ 2020-03-12 11:01 gisai 阅读(585) 评论(0) 推荐(0)

ArcGIS Pro二次开发-画线分割面工具
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-12 10:12 gisai 阅读(973) 评论(0) 推荐(0)

ArcGIS Pro二次开发-根据屏幕几个像素创建要素
摘要:/// <summary> /// Create a circular polygon around a mappoint for with a radius in pixels. /// </summary> /// <param name="mapPoint">Center of the cir 阅读全文

posted @ 2020-03-12 10:02 gisai 阅读(308) 评论(0) 推荐(0)

ArcGIS Pro二次开发-空间查询
摘要:public static RowCursor Search(this BasicFeatureLayer searchLayer, Geometry searchGeometry, SpatialRelationship spatialRelationship) { RowCursor rowCu 阅读全文

posted @ 2020-03-12 10:00 gisai 阅读(512) 评论(0) 推荐(0)

ArcGIS Pro二次开发判断要素是否为空
摘要:public static bool IsNullOrEmpty(this Geometry geometry) { if (geometry == null) return true; return geometry.IsEmpty; } 阅读全文

posted @ 2020-03-12 09:52 gisai 阅读(496) 评论(0) 推荐(0)

ArcGIS Pro二次开发画注记
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 22:49 gisai 阅读(452) 评论(0) 推荐(0)

ArcGIS Pro二次开发-创建图层
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ArcGIS.Core.CIM; using ArcGI 阅读全文

posted @ 2020-03-11 22:08 gisai 阅读(839) 评论(0) 推荐(0)

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