GeoPoint.Normalize(GeoPoint) Method
In This Article
Normalizes the specified geographical point’s coordinates.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.2.dll
NuGet Package: DevExpress.Wpf.Map
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
geo |
Geo |
A non-normalized Geo |
#Returns
Type | Description |
---|---|
Geo |
A normalized Geo |
#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