How to get the coordinate(s) of intersection of two polylines in ArcGIS Pro SDK?
In ArcObjects I can use ITopologicalOperator5 interface to create the points(intersect member). Is there anything like that in ArcGIS pro SDK?
Solved! Go to Solution.
Below can find intersection points(Found it in ProSnippets Geometry)
Geometry g = GeometryEngine.Instance.Intersection(line1, line2, GeometryDimension.esriGeometry0Dimension);
Multipoint resultMultipoint = g as Multipoint;
Below can find intersection points(Found it in ProSnippets Geometry)
Geometry g = GeometryEngine.Instance.Intersection(line1, line2, GeometryDimension.esriGeometry0Dimension);
Multipoint resultMultipoint = g as Multipoint;