Class Location

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.Camera.dll

The location class containing GPS data details.

C#
Copy
public class Location
Inheritance
object
Location

Constructors

View Source

Location(double, double, double)

The public constructor.

Declaration
C#
Copy
public Location(double latitude, double longitude, double altitude)
Parameters
Type Name Description
double latitude

The latitude data.

double longitude

The longitude data.

double altitude

The altitude data.

Properties

View Source

Altitude

The altitude data.

Declaration
C#
Copy
public double Altitude { get; }
Property Value
Type Description
double
View Source

Latitude

The latitude data.

Declaration
C#
Copy
public double Latitude { get; }
Property Value
Type Description
double
View Source

Longitude

The longitude data.

Declaration
C#
Copy
public double Longitude { get; }
Property Value
Type Description
double