Table of Contents

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

boundsElement XElement

The XML element containing bounds data.

Properties

MaxLat

Gets or sets the maximum latitude.

public double MaxLat { get; set; }

Property Value

double

MaxLon

Gets or sets the maximum longitude.

public double MaxLon { get; set; }

Property Value

double

MinLat

Gets or sets the minimum latitude.

public double MinLat { get; set; }

Property Value

double

MinLon

Gets or sets the minimum longitude.

public double MinLon { get; set; }

Property Value

double

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.