Class GpxDocument.GpxBounds
- Namespace
- Tudormobile.Strava.Documents
- Assembly
- Tudormobile.Strava.dll
Represents the geographic bounds of a GPX document.
public class GpxDocument.GpxBounds
- Inheritance
-
GpxDocument.GpxBounds
- Inherited Members
Constructors
GpxBounds(XElement?)
Initializes a new instance of the GpxDocument.GpxBounds class.
public GpxBounds(XElement? boundsElement)
Parameters
boundsElementXElementThe XML element containing bounds data.
Properties
MaxLat
Gets or sets the maximum latitude.
public double MaxLat { get; set; }
Property Value
MaxLon
Gets or sets the maximum longitude.
public double MaxLon { get; set; }
Property Value
MinLat
Gets or sets the minimum latitude.
public double MinLat { get; set; }
Property Value
MinLon
Gets or sets the minimum longitude.
public double MinLon { get; set; }
Property Value
Methods
ToString()
Returns a string representation of the bounds.
public override string ToString()
Returns
- string
A formatted string containing the minimum and maximum latitude and longitude values.