【发布时间】:2012-06-07 04:13:06
【问题描述】:
我需要使用 C# (Visual Studio 2008) 中 ArcGIS Server 10 的 .NET API 在现有要素类中添加一个点。我正在使用来自 ESRI 资源中心 (ArcGIS_SimpleEdit_CSharp) 的示例。下面显示了使用 X/Y 坐标创建新点的代码部分。
ESRI.ArcGIS.Geometry.IPoint aoPoint = serverContext.CreateObject("esriGeometry.Point") as
ESRI.ArcGIS.Geometry.IPoint;
aoPoint.PutCoords(actionRecord.Location.X, actionRecord.Location.Y);
但我需要使用纬度和经度(具有小数精度)而不是 X/Y 坐标。我该怎么做?
谢谢
【问题讨论】:
标签: esri arcgis-server