using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Input; using System.Threading.Tasks; using ...
分类:
其他好文 时间:
2020-04-06 14:00:06
阅读次数:
71
public void ShowCustomPopup() { //Get the active map view. var mapView = MapView.Active; if (mapView == null) return; //Create custom popup content va ...
分类:
其他好文 时间:
2020-04-06 00:01:25
阅读次数:
97
try{ var mapView = MapView.Active; if (mapView != null) { var map = mapView.Map; if (map != null) { foreach (StandaloneTable table in map.StandaloneTa ...
分类:
其他好文 时间:
2020-04-04 00:15:12
阅读次数:
66
protected override async void OnClick(){ using (var progress = new ProgressDialog("Showing Progress", "Canceled", 100, false)) { var status = new Canc ...
分类:
其他好文 时间:
2020-04-04 00:03:48
阅读次数:
114
The easiest way is to check the well-known id. if (sr.Wkid == SpatialReferences.WGS84.Wkid) IsWGS84 = true; or you could use the hard-coded wkid = 432 ...
分类:
其他好文 时间:
2020-04-02 19:33:38
阅读次数:
108
ArcGIS Pro 屏幕画框矩形打印含四周注记 ...
分类:
其他好文 时间:
2020-03-29 10:59:06
阅读次数:
65
protected override Task<bool> OnSketchCompleteAsync(Geometry geometry) { QueuedTask.Run(() => { var deleteFeatures = new EditOperation(); deleteFeatur ...
分类:
其他好文 时间:
2020-03-26 10:45:39
阅读次数:
300
ArcGIS二次开发综述 ArcGIS是一个全面的GIS平台,具有多种二次开发方式,为行业应用提供了丰富多样的定制手段。ArcGIS传统的二次开发方式主要是基于脚本和COM组件技术。随着云计算和移动计算的兴起和大数据的广泛应用,传统开发方式的缺点异常凸显,例如不能跨平台、开发难度大、性能低、无法利用 ...
分类:
其他好文 时间:
2020-03-24 21:36:39
阅读次数:
99
1、ArcGIS 10.2支持原生数据发布为要素服 有没有将自己已有的空间数据发布为要素服务的需求?有没有将非Esri空间数据类型的数据作为服务在Web端展示的需求? ArcGIS 10.2 for Server增加了这方面的能力,ArcGIS 10.2 for Server 可以将原生数据库中的空 ...
分类:
数据库 时间:
2020-03-21 11:20:31
阅读次数:
99