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

GeoPoint.Normalize(GeoPoint) Method

Normalizes the specified geographical point’s coordinates.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v19.2.dll

Declaration

public static GeoPoint Normalize(
    GeoPoint geoPoint
)

Parameters

Name Type Description
geoPoint GeoPoint

A non-normalized GeoPoint object.

Returns

Type Description
GeoPoint

A normalized GeoPoint object.

Remarks

The point’s GeoPoint.Latitude is normalized to a range from -90 to 90. If the specified value exceeds this range, it will be truncated during normalization.

The point’s GeoPoint.Longitude is normalized to a range from -180 to 180. If the specified value exceeds this range, it will be increased or decreased by 360 until it satisfies the normalized range.

See Also