GeoUtils.CalculateCenter(GeoPoint, GeoPoint) Method
Returns a center point with geographical coordinates between two given points.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.2.dll
NuGet Package: DevExpress.Wpf.Map
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
point1 | Geo |
The first geographical point. |
point2 | Geo |
The second geographical point. |
#Returns
Type | Description |
---|---|
Geo |
A center between two specified points. |
#Remarks
The following code shows how to use the CalculateCenter method to find a center between two points.
GeoPoint centerPoint = GeoUtils.CalculateCenter(new GeoPoint(35.286, -111.1724), new GeoPoint(38.3802, -110.9307));