Skip to main content

GeoPoint.Equals(GeoPoint, GeoPoint) Method

Determines whether the two specified GeoPoint objects are equal.

Namespace: DevExpress.UI.Xaml.Map

Assembly: DevExpress.UI.Xaml.Map.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public static bool Equals(
    GeoPoint point1,
    GeoPoint point2
)

Parameters

Name Type Description
point1 GeoPoint

A GeoPoint instance that specifies the first geographical point to compare.

point2 GeoPoint

A GeoPoint instance that specifies the second geographical point to compare.

Returns

Type Description
Boolean

true if specified objects are equal; otherwise false.

Remarks

Two GeoPoint objects are considered equal if their GeoPoint.Latitude and GeoPoint.Longitude property values are equal.

See Also