Class RouteSegment

Definition

Namespace:
Tizen.Maps
Assembly:
Tizen.Maps.dll
API Level:
3

Place Segment information used in Route Search requests.

C#
Copy
public class RouteSegment
Inheritance
System.Object
RouteSegment

Properties

View Source

Destination

Gets the destination coordinates for this segment.

Declaration
C#
Copy
public Geocoordinates Destination { get; }
Property Value
Type Description
Geocoordinates
API Level: 3
View Source

Distance

Gets the total distance for this segment.

Declaration
C#
Copy
public double Distance { get; }
Property Value
Type Description
System.Double
API Level: 3
View Source

Duration

Gets the total duration to cover this segment.

Declaration
C#
Copy
public double Duration { get; }
Property Value
Type Description
System.Double
API Level: 3
View Source

Maneuvers

Gets the maneuver list for this segment.

Declaration
C#
Copy
public IEnumerable<RouteManeuver> Maneuvers { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<RouteManeuver>
API Level: 3
View Source

Origin

Gets the origin coordinates for this segment.

Declaration
C#
Copy
public Geocoordinates Origin { get; }
Property Value
Type Description
Geocoordinates
API Level: 3
View Source

Path

Gets the coordinates list for this segment.

Declaration
C#
Copy
public IEnumerable<Geocoordinates> Path { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<Geocoordinates>
API Level: 3