Skip to main content
A newer version of this page is available. .

GeoUtils.CalculateCenter(GeoPoint, GeoPoint) Method

Returns a center point with geographical coordinates between two given points.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v19.1.dll

Declaration

public static GeoPoint CalculateCenter(
    GeoPoint point1,
    GeoPoint point2
)

Parameters

Name Type Description
point1 GeoPoint

The first geographical point.

point2 GeoPoint

The second geographical point.

Returns

Type Description
GeoPoint

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));
See Also