Dropbox .NET SDK
Show / Hide Table of Contents

Class GpsCoordinates

GPS coordinates for a photo or video.

Inheritance
object
GpsCoordinates
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class GpsCoordinates

Constructors

View Source

GpsCoordinates(double, double)

Initializes a new instance of the GpsCoordinates class.

Declaration
public GpsCoordinates(double latitude, double longitude)
Parameters
Type Name Description
double latitude

Latitude of the GPS coordinates.

double longitude

Longitude of the GPS coordinates.

Properties

View Source

Latitude

Latitude of the GPS coordinates.

Declaration
public double Latitude { get; protected set; }
Property Value
Type Description
double
View Source

Longitude

Longitude of the GPS coordinates.

Declaration
public double Longitude { get; protected set; }
Property Value
Type Description
double
  • View Source
In this article
Back to top Dropbox .NET SDK