Show / Hide Table of Contents

Class ISN_CLLocationCoordinate2D

The latitude and longitude associated with a location, specified using the WGS 84 reference frame.

Inheritance
System.Object
ISN_CLLocationCoordinate2D
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SA.iOS.CoreLocation
Assembly: cs.temp.dll.dll
Syntax
public class ISN_CLLocationCoordinate2D

Constructors

ISN_CLLocationCoordinate2D(Double, Double)

Initializes a new instance of the ISN_CLLocationCoordinate2D class.

Declaration
public ISN_CLLocationCoordinate2D(double latitude, double longitude)
Parameters
Type Name Description
System.Double latitude

he latitude in degrees.

System.Double longitude

The longitude in degrees.

Properties

Latitude

The latitude in degrees.

Positive values indicate latitudes north of the equator. Negative values indicate latitudes south of the equator.

Declaration
public double Latitude { get; set; }
Property Value
Type Description
System.Double

The latitude.

Longitude

The longitude in degrees.

Measurements are relative to the zero meridian, with positive values extending east of the meridian and negative values extending west of the meridian.

Declaration
public double Longitude { get; set; }
Property Value
Type Description
System.Double

The longitude.

In This Article
Back to top Generated by DocFX