ConstructGeodeticLineFromPoints Method (GeometryEngine)
Constructs a geodetic line connecting the specified points.
Parameters
- curveType
- The type of geodetic curve to be created.
- fromPoint
- The from point.
- toPoint
- The to point.
- linearUnit
- The linear unit of the densifyParameter if the is DensifyByLength. If this is null, the units are assumed to be meters.
- densifyMode
- The densification mode.
- densifyParameter
- The densification parameter.
Return Value
Returns the created geodetic line.
Construct a geodetic line connecting points
var sr = SpatialReferenceBuilder.CreateSpatialReference(4326);
var pt1 = MapPointBuilderEx.CreateMapPoint(60, 180, sr);
var pt2 = MapPointBuilderEx.CreateMapPoint(60, 0, sr);
// densify by length
var gl = GeometryEngine.Instance.ConstructGeodeticLineFromPoints(GeodeticCurveType.Geodesic, pt1, pt2, null, CurveDensifyMethod.ByLength, -3.356);
// densify by deviation
gl = GeometryEngine.Instance.ConstructGeodeticLineFromPoints(GeodeticCurveType.Geodesic, pt1, pt2, null, CurveDensifyMethod.ByDeviation, -0.0026);
Target Platforms: Windows 11, Windows 10
ArcGIS Pro version: 3 or higher.