Table of Contents

Class Waypoint

Namespace
Tudormobile.Strava.Model
Assembly
Tudormobile.Strava.dll

Represents a waypoint on a route, containing location, distance, and descriptive information.

public class Waypoint
Inheritance
Waypoint
Inherited Members

Properties

Categories

Gets or sets the collection of categories associated with the waypoint (e.g., "water", "summit", "danger").

public List<string> Categories { get; set; }

Property Value

List<string>

Description

Gets or sets the description of the waypoint.

public string Description { get; set; }

Property Value

string

DistanceIntoRoute

Gets or sets the distance from the start of the route to this waypoint in meters.

public float DistanceIntoRoute { get; set; }

Property Value

float

Latlng

Gets or sets the latitude and longitude coordinates of the waypoint.

public LatLng Latlng { get; set; }

Property Value

LatLng

TargetLatlng

Gets or sets the target latitude and longitude coordinates for the waypoint.

public LatLng TargetLatlng { get; set; }

Property Value

LatLng

Title

Gets or sets the title or name of the waypoint.

public string Title { get; set; }

Property Value

string