Click or drag to resize

GeoCoordinate Structure

This is preliminary documentation and is subject to change.

Represents a coordinate and an optional size in radius on the globe.
Inheritance Hierarchy
SystemObject
  SystemValueType
    WikiClientLibraryGeoCoordinate

Namespace: WikiClientLibrary
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax
public struct GeoCoordinate : IEquatable<GeoCoordinate>

The GeoCoordinate type exposes the following members.

Constructors
 NameDescription
Public methodGeoCoordinate(Double, Double)Initializes a new instance of GeoCoordinate representing a location on the Earth.
Public methodGeoCoordinate(Double, Double, Double)Initializes a new instance of GeoCoordinate representing a location on the Earth.
Public methodGeoCoordinate(Double, Double, Double, String)Initializes a new instance of the GeoCoordinate class
Top
Properties
 NameDescription
Public propertyDimension Gets/sets the size of the object.
Public propertyGlobe Gets/set the globe identifier of the coordinate.
Public propertyIsEmpty Gets a value that indicates if all the members in the structure have their uninitialized values.
Public propertyIsNormalized Determines whether the current coordinates is normalized.
Public propertyLatitude Gets/sets the latitude of the location.
Public propertyLongitude Gets/sets the longitude of the location.
Top
Methods
 NameDescription
Public methodEquals(GeoCoordinate)Indicates whether the current object is equal to another object of the same type.
Public methodEquals(Object)Indicates whether this instance and a specified object are equal.
(Overrides ValueTypeEquals(Object))
Public methodGetHashCodeReturns the hash code for this instance.
(Overrides ValueTypeGetHashCode)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodNormalize Normalizes the coordinates, ensuring the current coordinates meets the definition of "normalized coordinates" as specified in IsNormalized.
Public methodOffset Offsets the coordinates by the specified values.
Public methodToStringReturns the fully qualified type name of this instance.
(Overrides ValueTypeToString)
Top
Operators
Fields
 NameDescription
Public fieldStatic memberEarth The globe identifier of the Earth.
Public fieldStatic memberEmpty Gets an GeoCoordinate value with its members uninitialized.
Top
Remarks
This structure uses degrees as the unit of the coordinate.
See Also