PositionDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
A position is the fundamental geometry construct, consisting of Latitude, Longitude and (optionally) Altitude.
public class PositionDto
Inheritance Object → PositionDto
Properties
Altitude
Gets the altitude.
public Nullable<double> Altitude { get; set; }
Property Value
Latitude
Gets the latitude or Y coordinate
public double Latitude { get; set; }
Property Value
Longitude
Gets the longitude or X coordinate
public double Longitude { get; set; }
Property Value
Constructors
PositionDto()
public PositionDto()