Hello ,
I need to know if there's any method that returns the minimum distance between two geometries like this
Geometry1.ReturnDistance(Geometry2) ?? Thanks
You can use 'Esri.ArcGISRuntime.Geometry.GeometryEngine.Distance'
If one of your inputs is a point, you can also use 'Esri.ArcGISRuntime.Geometry.GeometryEngine.NearestCoordinate' to get the nearest location on another geometry, then measure the distance between those.