我需要在 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 坐标。我怎样才能做到这一点?
谢谢