GeoBlazor Pro
layout: pro title: DirectionsFeatureSet parent: Pro Classes grand_parent: GeoBlazor Pro —
dymaptic.GeoBlazor.Pro
dymaptic.GeoBlazor.Pro.Model
DirectionsFeatureSet Class
DirectionsFeatureSet is a subclass of FeatureSet that contains street directions for a solved route.
DirectionsFeatureSet is only returned when a route is solved with an directions output type of “complete”, “complete-no-events”, “instructions-only”, “standard”, or “summary-only”. The “featuresets” output type returns two regular FeatureSet, one for events, and the other for the path in-between events.
ArcGIS Maps SDK for JavaScript
public class DirectionsFeatureSet : dymaptic.GeoBlazor.Core.Components.Layers.FeatureSet
Inheritance System.Object 🡒 dymaptic.GeoBlazor.Core.Components.Layers.FeatureSet 🡒 DirectionsFeatureSet
Properties
DirectionsFeatureSet.Extent Property
The extent of the route.
public dymaptic.GeoBlazor.Core.Components.Geometries.Extent? Extent { get; set; }
Property Value
dymaptic.GeoBlazor.Core.Components.Geometries.Extent
DirectionsFeatureSet.MergedGeometry Property
A single polyline representing the route.
public dymaptic.GeoBlazor.Core.Components.Geometries.PolyLine? MergedGeometry { get; set; }
Property Value
dymaptic.GeoBlazor.Core.Components.Geometries.PolyLine
DirectionsFeatureSet.RouteId Property
The ID of the route.
public System.Nullable<long> RouteId { get; set; }
Property Value
DirectionsFeatureSet.RouteName Property
The name of the route.
public string? RouteName { get; set; }
Property Value
DirectionsFeatureSet.Strings Property
A flattened array of all direction strings.
public dymaptic.GeoBlazor.Pro.Model.DirectionsString[]? Strings { get; set; }
Property Value
DirectionsFeatureSet.TotalDriveTime Property
The total drive time for the route. Temporal units are defined by RouteParameters.DirectionsTimeAttribute in a Route.Solve() request.
public System.Nullable<double> TotalDriveTime { get; set; }
Property Value
System.Nullable<System.Double>
DirectionsFeatureSet.TotalLength Property
The total length of the route. Length units are defined by RouteParameters.DirectionsLengthUnits in a Route.Solve() request.
public System.Nullable<double> TotalLength { get; set; }
Property Value
System.Nullable<System.Double>
DirectionsFeatureSet.TotalTime Property
The total time for the route including wait and service time. Temporal units are defined by RouteParameters.DirectionsTimeAttribute in a Route.Solve() request.
public System.Nullable<double> TotalTime { get; set; }