Select to view content in your preferred language

Turn-by-Turn Navigation from Pre-Solved Route JSON

150
2
Tuesday
ManishGohil
Occasional Contributor
I need to perform turn-by-turn navigation using an already solved route stored in the database. Is it possible to do this with a JSON file, or is there any alternative using pre-solved route data? Below is my reference code, in which I am facing difficulty converting the JSON to a RouteResult.


using Esri.ArcGISRuntime.Geometry;
using Esri.ArcGISRuntime.Location;
using Esri.ArcGISRuntime.Mapping;
using Esri.ArcGISRuntime.Navigation;
using Esri.ArcGISRuntime.Symbology;
using Esri.ArcGISRuntime.Tasks.NetworkAnalysis;
using Esri.ArcGISRuntime.UI;
 
using Location = Esri.ArcGISRuntime.Location.Location;
 
namespace PARSMobile.Pages;
 
public partial class NavigationRoute : ContentPage, IDisposable
{
// Variables for tracking the navigation route.
private RouteTracker _tracker;
private RouteResult _routeResult;
private Route _route;
 
// List of driving directions for the route.
private IReadOnlyList<DirectionManeuver> _directionsList;
 
// Cancellation token for speech synthesizer.
private CancellationTokenSource _speechToken = new CancellationTokenSource();
 
// Graphics to show progress along the route.
private Graphic _routeAheadGraphic;
private Graphic _routeTraveledGraphic;
 
// San Diego Convention Center.
private readonly MapPoint _conventionCenter = new MapPoint(-117.160386727, 32.706608, SpatialReferences.Wgs84);
 
// USS San Diego Memorial.
private readonly MapPoint _memorial = new MapPoint(-117.173034, 32.712327, SpatialReferences.Wgs84);
 
// RH Fleet Aerospace Museum.
private readonly MapPoint _aerospaceMuseum = new MapPoint(-117.147230, 32.730467, SpatialReferences.Wgs84);
 
// Feature service for routing in San Diego.
 
public NavigationRoute()
{
InitializeComponent();
_ = Initialize();
}
 
private async Task Initialize()
{
try
{
// Create the map view.
MyMapView.Map = new Esri.ArcGISRuntime.Mapping.Map(BasemapStyle.ArcGISStreets);
 
string routeFilePath = Path.Combine(FileSystem.Current.AppDataDirectory, "route.json");
 
if (File.Exists(routeFilePath))
{
//Load from JSON instead of solving
string json = File.ReadAllText(routeFilePath);
_routeResult = RouteResult.FromJson(json);
_route = _routeResult.Routes[0];
}
 
 
// Add a graphics overlay for the route graphics.
MyMapView.GraphicsOverlays.Add(new GraphicsOverlay());
 
// Add graphics for the stops.
SimpleMarkerSymbol stopSymbol = new SimpleMarkerSymbol(
SimpleMarkerSymbolStyle.Diamond,
System.Drawing.Color.FromArgb(255, 255, 69, 0), // Use System.Drawing.Color
20
);
MyMapView.GraphicsOverlays[0].Graphics.Add(new Graphic(_conventionCenter, stopSymbol));
MyMapView.GraphicsOverlays[0].Graphics.Add(new Graphic(_memorial, stopSymbol));
MyMapView.GraphicsOverlays[0].Graphics.Add(new Graphic(_aerospaceMuseum, stopSymbol));
 
// Create a graphic (with a dashed line symbol) to represent the route.
_routeAheadGraphic = new Graphic(_route.RouteGeometry) { Symbol = new SimpleLineSymbol(SimpleLineSymbolStyle.Dash, System.Drawing.Color.FromArgb(138, 43, 226), 5) };
 
// Create a graphic (solid) to represent the route that's been traveled (initially empty).
_routeTraveledGraphic = new Graphic { Symbol = new SimpleLineSymbol(SimpleLineSymbolStyle.Solid, System.Drawing.Color.FromArgb(173, 216, 230), 3) };
// Add the route graphics to the map view.
MyMapView.GraphicsOverlays[0].Graphics.Add(_routeAheadGraphic);
MyMapView.GraphicsOverlays[0].Graphics.Add(_routeTraveledGraphic);
 
// Set the map viewpoint to show the entire route.
await MyMapView.SetViewpointGeometryAsync(_route.RouteGeometry!, 100);
 
// Enable the navigation button.
StartNavigationButton.IsEnabled = true;
}
catch (Exception e)
{
await Application.Current!.Windows[0].Page!.DisplayAlert("Error", e.Message, "OK");
}
}
 
private void StartNavigation(object sender, EventArgs e)
{
// Disable the start navigation button.
StartNavigationButton.IsEnabled = false;
 
// Get the directions for the route.
_directionsList = _route.DirectionManeuvers;
 
// Create a route tracker.
_tracker = new RouteTracker(_routeResult, 0, true);
_tracker.NewVoiceGuidance += SpeakDirection;
 
// Handle route tracking status changes.
_tracker.TrackingStatusChanged += TrackingStatusUpdated;
 
// Turn on navigation mode for the map view.
MyMapView.LocationDisplay.AutoPanMode = LocationDisplayAutoPanMode.Navigation;
MyMapView.LocationDisplay.AutoPanModeChanged += AutoPanModeChanged;
 
// Add a data source for the location display.
var simulationParameters = new SimulationParameters(DateTimeOffset.Now, 40.0);
var simulatedDataSource = new SimulatedLocationDataSource();
simulatedDataSource.SetLocationsWithPolyline(_route.RouteGeometry, simulationParameters);
MyMapView.LocationDisplay.DataSource = new RouteTrackerDisplayLocationDataSource(simulatedDataSource, _tracker);
 
// Use this instead if you want real location:
// MyMapView.LocationDisplay.DataSource = new RouteTrackerLocationDataSource(new SystemLocationDataSource(), _tracker);
 
// Enable the location display (this wil start the location data source).
MyMapView.LocationDisplay.IsEnabled = true;
 
// Show the message block for text output.
MessagesTextBlock.IsVisible = true;
}
 
private void TrackingStatusUpdated(object sender, RouteTrackerTrackingStatusChangedEventArgs e)
{
TrackingStatus status = e.TrackingStatus;
 
// Start building a status message for the UI.
System.Text.StringBuilder statusMessageBuilder = new System.Text.StringBuilder();
 
// Check the destination status.
if (status.DestinationStatus == DestinationStatus.NotReached || status.DestinationStatus == DestinationStatus.Approaching)
{
statusMessageBuilder.AppendLine("Distance remaining: " +
status.RouteProgress.RemainingDistance.DisplayText + " " +
status.RouteProgress.RemainingDistance.DisplayTextUnits.PluralDisplayName);
 
statusMessageBuilder.AppendLine("Time remaining: " +
status.RouteProgress.RemainingTime.ToString(@"hh\:mm\:ss"));
 
if (status.CurrentManeuverIndex + 1 < _directionsList.Count)
{
statusMessageBuilder.AppendLine("Next direction: " + _directionsList[status.CurrentManeuverIndex + 1].DirectionText);
}
 
// Set geometries for progress and the remaining route.
_routeAheadGraphic.Geometry = status.RouteProgress.RemainingGeometry;
_routeTraveledGraphic.Geometry = status.RouteProgress.TraversedGeometry;
}
else if (status.DestinationStatus == DestinationStatus.Reached)
{
statusMessageBuilder.AppendLine("Destination reached.");
 
// Set the route geometries to reflect the completed route.
_routeAheadGraphic.Geometry = null;
_routeTraveledGraphic.Geometry = status.RouteResult.Routes[0].RouteGeometry;
 
// Navigate to the next stop (if there are stops remaining).
if (status.RemainingDestinationCount > 1)
{
_tracker.SwitchToNextDestinationAsync();
}
 
// Stop the simulated location data source.
MyMapView.LocationDisplay.DataSource.StopAsync();
}
 
Microsoft.Maui.ApplicationModel.MainThread.BeginInvokeOnMainThread(() =>
{
// Show the status information in the UI.
MessagesTextBlock.Text = statusMessageBuilder.ToString().TrimEnd('\n').TrimEnd('\r');
});
}
 
private void SpeakDirection(object sender, RouteTrackerNewVoiceGuidanceEventArgs e)
{
// Say the direction using voice synthesis.
if (e.VoiceGuidance.Text?.Length > 0)
{
_speechToken.Cancel();
_speechToken = new CancellationTokenSource();
TextToSpeech.Default.SpeakAsync(e.VoiceGuidance.Text, null, _speechToken.Token);
}
}
 
private void AutoPanModeChanged(object sender, LocationDisplayAutoPanMode e)
{
// Turn the recenter button on or off when the location display changes to or from navigation mode.
RecenterButton.IsEnabled = e != LocationDisplayAutoPanMode.Navigation;
}
 
private void RecenterButton_Click(object sender, EventArgs e)
{
// Change the mapview to use navigation mode.
MyMapView.LocationDisplay.AutoPanMode = LocationDisplayAutoPanMode.Navigation;
}
 
public void Dispose()
{
// Stop the tracker.
if (_tracker != null)
{
_tracker.TrackingStatusChanged -= TrackingStatusUpdated;
_tracker.NewVoiceGuidance -= SpeakDirection;
_tracker = null;
}
 
// Stop the location data source.
MyMapView.LocationDisplay?.DataSource?.StopAsync();
}
}
 
// This location data source uses an input data source and a route tracker.
// The location source that it updates is based on the snapped-to-route location from the route tracker.
public class RouteTrackerDisplayLocationDataSource : LocationDataSource
{
private LocationDataSource _inputDataSource;
private RouteTracker _routeTracker;
 
public RouteTrackerDisplayLocationDataSource(LocationDataSource dataSource, RouteTracker routeTracker)
{
// Set the data source
_inputDataSource = dataSource ?? throw new ArgumentNullException(nameof(dataSource));
 
// Set the route tracker.
_routeTracker = routeTracker ?? throw new ArgumentNullException(nameof(routeTracker));
 
// Change the tracker location when the source location changes.
_inputDataSource.LocationChanged += InputLocationChanged;
 
// Update the location output when the tracker location updates.
_routeTracker.TrackingStatusChanged += TrackingStatusChanged;
}
 
// Change the InputLocationChanged method signature to match EventHandler<Location>
private void InputLocationChanged(object sender, Location e)
{
// Update the tracker location with the new location from the source (simulation or GPS).
_routeTracker.TrackLocationAsync(e);
}
 
private void TrackingStatusChanged(object sender, RouteTrackerTrackingStatusChangedEventArgs e)
{
// Check if the tracking status has a location.
if (e.TrackingStatus.DisplayLocation != null)
{
// Call the base method for LocationDataSource to update the location with the tracked (snapped to route) location.
UpdateLocation(e.TrackingStatus.DisplayLocation);
}
}
 
protected override Task OnStartAsync() => _inputDataSource.StartAsync();
 
protected override Task OnStopAsync() => _inputDataSource.StartAsync();
}
 
 
 
0 Kudos
2 Replies
VenkataKondepati
Occasional Contributor

 

  • You can do turn-by-turn from pre-solved data, but your JSON must be the full RouteResult JSON (either the exact REST /solveRoute response with directions or result.ToJson() from ArcGIS Runtime). A polyline or a “routes” feature JSON alone isn’t enough—RouteTracker needs maneuvers, stops, and metadata.

  • When you first solve, be sure you set:

parameters.ReturnDirections = true;
parameters.ReturnStops = true;
parameters.OutputSpatialReference = SpatialReferences.Wgs84; // or your target
  • Then store var json = routeResult.ToJson();. Later you can load with RouteResult.FromJson(json) and use new RouteTracker(routeResult, 0, true).

  • If your stored JSON is just geometry (or a feature layer export), you can’t reconstruct turn-by-turn; you’ll need to re-solve from the original stops or start storing the full solve response.

  • Tiny bug in your sample: in RouteTrackerDisplayLocationDataSource, OnStopAsync() should call _inputDataSource.StopAsync(), not StartAsync().

 

0 Kudos
ManishGohil
Occasional Contributor

Hi VenkataKondepati,

Thank you for your response.

I am unable to find any method to convert JSON to a RouteResult.
Please find the attached screenshot

ManishGohil_0-1759332093475.png

 

We are currently using our custom geoprocessing service to solve the route, export the feature class, and then create a JSON from the feature class to perform turn-by-turn navigation on mobile. Our requirement is that we do not want to solve the route again, as we already have the JSON.

Below is my json for the reference.

{"routes": [{"name": "1", "geometry": "{\"hasM\":true,\"paths\":[[[-88.224409999999978,35.496660000000077,0],[-88.224639999999965,35.496940000000052,0.028300000005401671],[-88.224879999999985,35.497210000000052,0.056500000006053597],[-88.225269999999966,35.497820000000047,0.11299999999755528],[-88.225559999999973,35.498410000000035,0.16439999999420252],[-88.225739999999973,35.498830000000055,0.20010000000183936],[-88.226399999999956,35.499780000000044,0.29039999999804422],[-88.226599999999962,35.500030000000038,0.31540000000677537],[-88.226589999999987,35.500070000000051,0.31859999999869615],[-88.226529999999968,35.500120000000038,0.3246999999973923],[-88.226329999999962,35.499910000000057,0.34600000000500586],[-88.226059999999961,35.499670000000037,0.37260000000242144],[-88.225909999999942,35.499560000000031,0.38629999999830034],[-88.225739999999973,35.499460000000056,0.40080000000307336],[-88.225379999999973,35.499280000000056,0.43039999999746215],[-88.224999999999966,35.499130000000036,0.46039999999629799],[-88.224589999999978,35.499010000000055,0.49189999999362044],[-88.224169999999958,35.498940000000061,0.52319999999599531],[-88.223959999999977,35.498920000000055,0.53870000000461005],[-88.223609999999951,35.498920000000055,0.56440000000293367],[-88.222439999999949,35.499000000000024,0.64459999999962747],[-88.222009999999955,35.499030000000062,0.67410000000381842],[-88.22157999999996,35.499050000000068,0.70350000000325963],[-88.221369999999979,35.499050000000068,0.71790000000328291],[-88.22097999999994,35.499010000000055,0.74469999999564607],[-88.220589999999959,35.498950000000036,0.77169999999750871],[-88.220379999999977,35.498900000000049,0.78639999999722932],[-88.220179999999971,35.49884000000003,0.80070000000705477],[-88.219989999999939,35.498770000000036,0.8144999999931315],[-88.219609999999989,35.498620000000074,0.84249999999883585],[-88.219239999999957,35.498450000000048,0.87029999999504071],[-88.218679999999949,35.498180000000048,0.91280000000551809],[-88.218069999999955,35.497890000000041,0.95900000000256114],[-88.217679999999973,35.497700000000066,0.98750000000291038],[-88.217249999999979,35.497500000000059,1.0187000000005355],[-88.216819999999984,35.497300000000052,1.0498999999981606],[-88.21596999999997,35.496890000000064,1.1119999999937136],[-88.215329999999938,35.496610000000032,1.1579000000056112],[-88.214699999999937,35.496380000000045,1.202000000004773],[-88.214079999999967,35.496170000000063,1.2451000000000931],[-88.213669999999979,35.496030000000076,1.2736000000004424],[-88.21324999999996,35.495900000000063,1.3025000000052387],[-88.21309999999994,35.495850000000075,1.3129000000044471],[-88.212569999999971,35.49568000000005,1.349499999996624],[-88.211789999999951,35.495420000000024,1.4086999999999534],[-88.211379999999963,35.495290000000068,1.4395999999978812],[-88.210759999999937,35.49508000000003,1.486799999998766],[-88.210149999999942,35.494870000000049,1.5332000000053085],[-88.20993999999996,35.49479000000008,1.5494000000035157],[-88.209529999999972,35.494600000000048,1.5819999999948777],[-88.209129999999959,35.494400000000041,1.6141999999963446],[-88.208929999999953,35.49428000000006,1.6309000000037486],[-88.208549999999946,35.494020000000035,1.6640999999945052],[-88.208359999999971,35.493880000000047,1.6811000000016065],[-88.208169999999939,35.493730000000028,1.698499999998603],[-88.207889999999963,35.493480000000034,1.7256000000052154],[-88.207649999999944,35.493250000000046,1.7495000000053551],[-88.207499999999982,35.493080000000077,1.7657999999937601],[-88.207239999999956,35.492740000000026,1.7966000000014901],[-88.20712999999995,35.492580000000032,1.8105999999970663],[-88.206859999999949,35.492120000000057,1.8490000000019791],[-88.206829999999968,35.492070000000069,1.8531999999977415],[-88.206619999999987,35.491690000000062,1.8879000000015367],[-88.206439999999986,35.49141000000003,1.9144999999989523],[-88.206129999999973,35.490990000000068,1.9563000000052853],[-88.205829999999935,35.490610000000061,1.9949999999953434],[-88.205809999999985,35.49058000000008,1.997799999997369],[-88.205669999999941,35.490400000000079,2.0160999999934575],[-88.205499999999972,35.490200000000073,2.0371000000013737],[-88.205329999999947,35.48998000000006,2.0592999999935273],[-88.205049999999972,35.489590000000078,2.09769999999844],[-88.204889999999978,35.489280000000065,2.1254999999946449],[-88.20474999999999,35.488960000000077,2.1535000000003492],[-88.204649999999958,35.488630000000057,2.1809999999968568],[-88.204579999999964,35.488280000000032,2.2096000000019558],[-88.204549999999983,35.487910000000056,2.2391999999963446],[-88.204539999999952,35.487740000000031,2.2526999999972759],[-88.204559999999958,35.487210000000061,2.2946999999985565],[-88.204599999999971,35.486700000000042,2.3350999999966007],[-88.204629999999952,35.486170000000072,2.3770999999978812],[-88.204629999999952,35.486050000000034,2.3865999999979977],[-88.204619999999977,35.48562000000004,2.4207000000023982],[-88.204629999999952,35.485250000000065,2.4499000000068918],[-88.204639999999984,35.485050000000058,2.4658000000054017],[-88.204649999999958,35.484880000000032,2.4790000000066357],[-88.204669999999965,35.484480000000076,2.5102000000042608],[-88.204709999999977,35.483690000000024,2.5715999999956694],[-88.20474999999999,35.483080000000029,2.6192000000010012],[-88.20474999999999,35.482490000000041,2.6649999999935972],[-88.204699999999946,35.482100000000059,2.6956000000063796],[-88.204589999999939,35.481720000000053,2.7262999999948079],[-88.204429999999945,35.481350000000077,2.7577000000019325],[-88.204219999999964,35.480990000000077,2.7900999999983469],[-88.203949999999963,35.480680000000064,2.8220000000001164],[-88.203659999999957,35.480410000000063,2.8527999999932945],[-88.203359999999975,35.480180000000075,2.8821999999927357],[-88.203219999999988,35.480080000000044,2.8935000000055879],[-88.202899999999943,35.479900000000043,2.9174999999959255],[-88.202339999999936,35.479660000000024,2.957299999994575],[-88.201509999999985,35.479330000000061,3.0157000000035623],[-88.200839999999971,35.479070000000036,3.0626999999949476],[-88.20020999999997,35.478810000000067,3.1073000000033062],[-88.199969999999951,35.478710000000035,3.1242999999958556],[-88.19933999999995,35.478460000000041,3.1686999999947147],[-88.198939999999936,35.478290000000072,3.1971000000048662],[-88.198569999999961,35.478120000000047,3.2237000000022817],[-88.198019999999985,35.477820000000065,3.2649999999994179],[-88.197649999999953,35.477590000000077,3.2936999999947147],[-88.197089999999946,35.477230000000077,3.337599999998929],[-88.196709999999939,35.476980000000026,3.3675999999977648],[-88.196329999999989,35.476720000000057,3.397899999996298],[-88.19593999999995,35.476470000000063,3.4284000000043306],[-88.19548999999995,35.476180000000056,3.4636999999929685],[-88.195339999999987,35.476080000000024,3.4756000000052154],[-88.194939999999974,35.475820000000056,3.5069999999977881],[-88.194329999999979,35.475420000000042,3.5550999999977648],[-88.193719999999985,35.475030000000061,3.6027999999932945],[-88.19310999999999,35.474630000000047,3.6508999999932712],[-88.19268999999997,35.474370000000079,3.6834999999991851],[-88.192059999999969,35.474010000000078,3.7312999999994645],[-88.190979999999968,35.473420000000033,3.8123999999952503],[-88.19014999999996,35.472960000000057,3.8748999999952503],[-88.189209999999946,35.472440000000063,3.9456999999965774],[-88.189089999999965,35.472380000000044,3.9545999999972992],[-88.189049999999952,35.472360000000037,3.9573999999993248],[-88.188559999999939,35.472090000000037,3.9931000000069616],[-88.188009999999963,35.47180000000003,4.0328000000008615],[-88.187429999999949,35.471480000000042,4.0751000000018394],[-88.187039999999968,35.471270000000061,4.1033000000024913],[-88.186659999999961,35.471080000000029,4.1303999999945518],[-88.186269999999979,35.470900000000029,4.1578000000008615],[-88.185879999999941,35.470760000000041,4.1842999999935273],[-88.185289999999952,35.470570000000066,4.2238000000070315],[-88.184679999999958,35.470400000000041,4.2642000000050757],[-88.184289999999976,35.470280000000059,4.2902999999932945],[-88.184189999999944,35.470250000000078,4.2969000000011874],[-88.184109999999976,35.470230000000072,4.3022000000055414],[-88.18393999999995,35.470170000000053,4.3136999999987893],[-88.183409999999981,35.469970000000046,4.3497999999963213],[-88.18304999999998,35.469820000000027,4.3747000000003027],[-88.182679999999948,35.469650000000058,4.4006999999983236],[-88.181959999999947,35.469290000000058,4.4520999999949709],[-88.181789999999978,35.469200000000058,4.4643000000069151],[-88.181609999999978,35.469110000000057,4.4771999999938998],[-88.181319999999971,35.468960000000038,4.4980000000068685],[-88.18086999999997,35.468740000000025,4.5299999999988358],[-88.180489999999963,35.468540000000075,4.5574000000051456],[-88.179929999999956,35.468260000000043,4.597299999993993],[-88.179359999999974,35.467980000000068,4.6377999999967869],[-88.178969999999936,35.467800000000068,4.6652000000030966],[-88.178589999999986,35.467630000000042,4.6918000000005122],[-88.178049999999985,35.467430000000036,4.7284999999974389],[-88.177839999999946,35.467350000000067,4.7428999999974621],[-88.177689999999984,35.46730000000008,4.7526999999972759],[-88.177309999999977,35.467200000000048,4.7771000000066124],[-88.176909999999964,35.467100000000073,4.8025999999954365],[-88.176489999999944,35.467020000000048,4.8291999999928521],[-88.176049999999975,35.466940000000079,4.8568999999988591],[-88.175179999999955,35.466770000000054,4.9119000000064261],[-88.174549999999954,35.466660000000047,4.951600000000326],[-88.174069999999972,35.466570000000047,4.9818999999988591],[-88.173929999999984,35.466540000000066,4.9906999999948312],[-88.17387999999994,35.466530000000034,4.9939000000013039],[-88.17351999999994,35.466470000000072,5.0164999999979045],[-88.172639999999944,35.466310000000078,5.0720000000001164],[-88.171879999999987,35.466160000000059,5.1201000000000931],[-88.171679999999981,35.466130000000078,5.1325999999971827],[-88.171179999999936,35.466040000000078,5.1640999999945052],[-88.170419999999979,35.465900000000033,5.2121000000042841],[-88.169929999999965,35.465810000000033,5.2430000000022119],[-88.169439999999952,35.465740000000039,5.2737000000051921],[-88.168729999999982,35.465680000000077,5.3178999999945518],[-88.167699999999968,35.465640000000064,5.3818000000028405],[-88.167299999999955,35.465620000000058,5.4076999999961117],[-88.16659999999996,35.465590000000077,5.4530999999988126],[-88.165639999999939,35.465550000000064,5.5151999999943655],[-88.165159999999958,35.465530000000058,5.5463000000017928],[-88.164449999999988,35.465500000000077,5.5923000000038883],[-88.163279999999986,35.465450000000033,5.6680999999953201],[-88.163189999999986,35.465450000000033,5.6738999999943189],[-88.163029999999935,35.465440000000058,5.6842999999935273],[-88.162079999999946,35.465400000000045,5.7458000000042375],[-88.16158999999999,35.465380000000039,5.7774999999965075],[-88.160859999999957,35.465380000000039,5.824800000002142],[-88.160139999999956,35.465430000000026,5.87149999999383],[-88.159209999999973,35.465500000000077,5.9318000000057509],[-88.158969999999954,35.465520000000026,5.9474000000045635],[-88.158519999999953,35.465550000000064,5.9765999999945052],[-88.158059999999978,35.465580000000045,6.0063999999983935],[-88.157619999999952,35.465620000000058,6.0350000000034925],[-88.157179999999983,35.465650000000039,6.0635000000038417],[-88.15653999999995,35.465690000000052,6.1049999999959255],[-88.156259999999975,35.465710000000058,6.1232000000018161],[-88.155679999999961,35.465760000000046,6.1607999999978347],[-88.155009999999947,35.465810000000033,6.2042999999976018],[-88.154459999999972,35.465850000000046,6.2424999999930151],[-88.15426999999994,35.465860000000077,6.2556999999942491],[-88.15388999999999,35.465860000000077,6.2820000000065193],[-88.153499999999951,35.465820000000065,6.3092000000033295],[-88.153299999999945,35.465790000000027,6.3231999999989057],[-88.152899999999988,35.465700000000027,6.3515999999945052],[-88.15250999999995,35.465550000000064,6.3804999999993015],[-88.152319999999975,35.465470000000039,6.394799999994575],[-88.151899999999955,35.465240000000051,6.4279999999998836],[-88.151589999999942,35.465080000000057,6.4520999999949709],[-88.151399999999967,35.464980000000025,6.467000000004191],[-88.150699999999972,35.464620000000025,6.5207999999984168],[-88.150349999999946,35.464440000000025,6.5476000000053318],[-88.150139999999965,35.46434000000005,6.5635000000038417],[-88.149609999999939,35.46410000000003,6.6031999999977415],[-88.149209999999982,35.463950000000068,6.6324000000022352],[-88.149039999999957,35.463890000000049,6.6447000000043772],[-88.14856999999995,35.46372000000008,6.6802000000025146],[-88.147929999999974,35.463490000000036,6.728400000007241],[-88.147289999999941,35.463250000000073,6.7768999999971129],[-88.147089999999935,35.463170000000048,6.7921999999962281],[-88.14689999999996,35.463080000000048,6.8071000000054482],[-88.146719999999959,35.462980000000073,6.8218000000051688],[-88.146549999999991,35.462880000000041,6.8358000000007451],[-88.146229999999946,35.462650000000053,6.8637000000016997],[-88.146079999999984,35.462530000000072,6.8773999999975786],[-88.145789999999977,35.46225000000004,6.9060000000026776],[-88.145539999999983,35.461930000000052,6.9348000000027241],[-88.145439999999951,35.461760000000027,6.9487999999983003],[-88.145249999999976,35.461400000000026,6.9777000000030966],[-88.145169999999951,35.461220000000026,6.9916999999986729],[-88.14489999999995,35.460480000000075,7.0476000000053318],[-88.144859999999937,35.460370000000069,7.055900000006659],[-88.144569999999987,35.459530000000029,7.1254999999946449],[-88.144489999999962,35.459320000000048,7.1431000000011409],[-88.144429999999943,35.459170000000029,7.1557999999931781],[-88.144259999999974,35.459150000000079,7.1687999999994645],[-88.144109999999955,35.459220000000073,7.1812999999965541],[-88.143279999999947,35.460230000000024,7.2804999999934807],[-88.143159999999966,35.460190000000068,7.2893999999942025],[-88.143069999999966,35.460210000000075,7.2958999999973457],[-88.142379999999946,35.46067000000005,7.354300000006333],[-88.140879999999981,35.461470000000077,7.4741000000067288],[-88.140539999999987,35.461620000000039,7.5002999999996973],[-88.139549999999986,35.462010000000078,7.5752000000065891],[-88.139239999999972,35.46207000000004,7.5975000000034925],[-88.137949999999989,35.462010000000078,7.688399999999092],[-88.137649999999951,35.46207000000004,7.7100000000064028],[-88.137409999999988,35.462170000000071,7.7283000000024913],[-88.137249999999938,35.462100000000078,7.741200000004028],[-88.136619999999937,35.462060000000065,7.7878000000055181],[-88.135069999999985,35.462000000000046,7.90230000000156],[-88.134289999999964,35.461930000000052,7.9602000000013504],[-88.133789999999976,35.461970000000065,7.9971999999979744],[-88.132969999999943,35.461930000000052,8.0577999999950407],[-88.132569999999987,35.462000000000046,8.0877999999938766],[-88.131729999999948,35.462050000000033,8.1499000000039814],[-88.131149999999991,35.46216000000004,8.1934999999939464],[-88.130179999999939,35.461990000000071,8.2661999999982072],[-88.129799999999989,35.461880000000065,8.2954000000027008],[-88.129599999999982,35.461850000000027,8.3104000000021188],[-88.129389999999944,35.461860000000058,8.3258999999961816],[-88.129009999999937,35.461920000000077,8.354300000006333],[-88.128349999999955,35.461930000000052,8.4030000000057044],[-88.128179999999986,35.461900000000071,8.4158000000024913],[-88.127879999999948,35.461780000000033,8.4395999999978812],[-88.127719999999954,35.461770000000058,8.4514999999955762],[-88.127169999999978,35.461940000000027,8.4940000000060536],[-88.126429999999971,35.462050000000033,8.5491999999940163],[-88.126219999999989,35.462100000000078,8.5651999999972759],[-88.125149999999962,35.462610000000041,8.652700000006007],[-88.124989999999968,35.462730000000079,8.6674999999959255],[-88.124729999999943,35.46303000000006,8.6968000000051688],[-88.124469999999974,35.463550000000055,8.7397000000055414],[-88.124279999999942,35.463900000000024,8.7691000000049826],[-88.124149999999986,35.464080000000024,8.7854999999981374],[-88.124049999999954,35.464150000000075,8.7945000000036089],[-88.12352999999996,35.464410000000044,8.8374000000039814],[-88.123389999999972,35.464540000000056,8.8515000000043074],[-88.123269999999991,35.464690000000076,8.8656999999948312],[-88.123129999999946,35.46503000000007,8.8929000000061933],[-88.123149999999953,35.465480000000071,8.9260999999969499],[-88.123129999999946,35.465650000000039,8.938800000003539],[-88.122879999999952,35.46601000000004,8.9710999999952037],[-88.120949999999937,35.468260000000043,9.1900000000023283],[-88.120589999999936,35.468720000000076,9.2332000000023982],[-88.120319999999936,35.469000000000051,9.261899999997695],[-88.119359999999972,35.470210000000066,9.375899999999092],[-88.119229999999959,35.470440000000053,9.3953999999939697],[-88.118889999999965,35.471280000000036,9.4622999999992317],[-88.118479999999977,35.472530000000063,9.5595000000030268],[-88.118359999999939,35.472840000000076,9.5840000000025611],[-88.118069999999989,35.473390000000052,9.6298999999999069],[-88.117959999999982,35.473510000000033,9.6420000000071013],[-88.117709999999988,35.473670000000027,9.6638999999995576],[-88.117659999999944,35.473750000000052,9.6708000000071479],[-88.117459999999937,35.473720000000071,9.6846999999979744],[-88.117359999999962,35.473720000000071,9.6916000000055647],[-88.116929999999968,35.473760000000027,9.7211999999999534],[-88.116799999999955,35.473810000000071,9.7307000000000698],[-88.116509999999948,35.47407000000004,9.7614000000030501],[-88.115559999999959,35.47467000000006,9.849900000001071],[-88.115399999999966,35.47485000000006,9.8689000000013039],[-88.115279999999984,35.475350000000049,9.9094000000040978],[-88.115219999999965,35.475730000000055,9.939700000002631],[-88.115279999999984,35.476490000000069,9.9998000000050524],[-88.115259999999978,35.477050000000077,10.043999999994412],[-88.115039999999965,35.47774000000004,10.100999999995111],[-88.114889999999946,35.478150000000028,10.135399999999208],[-88.11475999999999,35.478360000000066,10.154899999994086],[-88.114359999999976,35.478870000000029,10.205900000000838],[-88.113849999999957,35.479430000000036,10.265599999998813],[-88.113419999999962,35.479840000000024,10.31239999999525],[-88.113229999999987,35.480110000000025,10.338399999993271],[-88.112829999999974,35.48088000000007,10.408400000000256],[-88.112659999999948,35.481140000000039,10.433499999999185],[-88.112479999999948,35.481510000000071,10.466599999999744],[-88.111999999999966,35.48273000000006,10.572400000004563],[-88.111429999999984,35.481960000000072,10.638099999996484],[-88.107369999999946,35.476470000000063,11.106400000004214],[-88.106589999999983,35.475420000000042,11.196100000001024],[-88.106129999999951,35.474810000000048,11.248500000001513],[-88.105659999999943,35.474230000000034,11.299700000003213],[-88.105149999999981,35.473680000000058,11.35109999999986],[-88.104779999999948,35.473320000000058,11.386499999993248],[-88.104399999999941,35.472980000000064,11.42149999999674],[-88.103999999999985,35.472660000000076,11.456600000004983],[-88.10358999999994,35.472350000000063,11.49189999999362],[-88.102959999999939,35.471930000000043,11.543799999999464],[-88.102079999999944,35.471390000000042,11.614600000000792],[-88.100529999999935,35.470450000000028,11.739000000001397],[-88.099789999999985,35.470000000000027,11.798399999999674],[-88.099079999999958,35.469580000000065,11.852100000003702],[-88.098819999999989,35.469420000000071,11.872000000003027],[-88.098409999999944,35.469170000000076,11.903300000005402],[-88.09797999999995,35.468910000000051,11.936100000006263],[-88.097149999999942,35.468410000000063,11.999200000005658],[-88.097069999999974,35.468360000000075,12.005399999994552],[-88.096329999999966,35.467900000000043,12.062099999995553],[-88.09579999999994,35.46757000000008,12.102799999993294],[-88.095349999999939,35.467290000000048,12.137400000006892],[-88.094899999999939,35.467020000000048,12.17160000000149],[-88.094229999999982,35.466600000000028,12.223100000002887],[-88.093779999999981,35.466330000000028,12.257299999997485],[-88.092859999999973,35.465760000000046,12.327799999999115],[-88.091929999999991,35.465200000000038,12.398600000000442],[-88.091229999999939,35.464770000000044,12.452099999994971],[-88.090759999999989,35.464490000000069,12.487800000002608],[-88.090049999999962,35.464050000000043,12.542199999996228],[-88.088739999999973,35.463250000000073,12.642300000006799],[-88.088879999999961,35.46345000000008,12.661399999997229],[-88.088979999999935,35.46354000000008,12.671900000001187],[-88.089149999999961,35.463800000000049,12.696299999995972],[-88.089109999999948,35.464110000000062,12.720700000005309],[-88.089049999999986,35.464170000000024,12.727400000003399],[-88.08893999999998,35.464190000000031,12.736099999994622],[-88.088729999999941,35.464170000000024,12.751999999993131],[-88.088569999999947,35.464210000000037,12.764400000000023],[-88.08818999999994,35.464480000000037,12.799400000003516],[-88.088039999999978,35.464650000000063,12.816399999996065],[-88.087899999999991,35.464920000000063,12.839200000002165],[-88.087679999999978,35.465220000000045,12.867199999993318],[-88.08753999999999,35.465440000000058,12.887799999996787],[-88.087419999999952,35.465580000000045,12.90240000000631],[-88.087009999999964,35.465840000000071,12.94090000000142],[-88.086889999999983,35.465980000000059,12.955499999996391],[-88.08666999999997,35.466500000000053,13.000299999999697],[-88.086469999999963,35.467090000000042,13.049700000003213],[-88.086129999999969,35.467640000000074,13.100900000004913],[-88.085929999999962,35.467850000000055,13.12390000000596],[-88.085219999999936,35.468350000000044,13.192800000004354],[-88.085159999999973,35.468440000000044,13.201300000000629],[-88.085149999999942,35.468590000000063,13.213199999998324],[-88.085319999999967,35.469130000000064,13.25810000000638],[-88.085399999999936,35.469510000000071,13.288899999999558],[-88.085649999999987,35.470120000000065,13.341199999995297],[-88.085719999999981,35.470510000000047,13.372600000002421],[-88.085729999999955,35.470770000000073,13.393200000005891],[-88.085669999999936,35.471020000000067,13.41359999999986],[-88.085439999999949,35.471560000000068,13.460099999996601],[-88.084949999999935,35.472300000000075,13.530499999993481],[-88.084869999999967,35.472380000000044,13.539399999994203],[-88.08475999999996,35.472430000000031,13.548999999999069],[-88.084629999999947,35.471860000000049,13.591799999994691],[-88.084369999999979,35.47124000000008,13.64100000000326],[-88.084319999999991,35.47106000000008,13.654699999999139],[-88.084079999999972,35.470570000000066,13.694699999992736],[-88.083919999999978,35.470370000000059,13.713399999993271],[-88.083719999999971,35.470200000000034,13.732600000003004],[-88.081409999999948,35.468860000000063,13.928199999994831],[-88.081219999999973,35.468810000000076,13.942599999994854],[-88.080929999999967,35.468820000000051,13.963799999997718],[-88.079739999999958,35.469200000000058,14.055300000007264],[-88.079439999999977,35.469270000000051,14.077799999999115],[-88.079019999999957,35.469310000000064,14.108699999997043],[-88.078539999999975,35.469320000000039,14.143899999995483],[-88.078339999999969,35.469300000000032,14.158599999995204],[-88.078039999999987,35.469220000000064,14.181299999996554],[-88.077759999999955,35.469050000000038,14.205300000001444],[-88.077439999999967,35.468700000000069,14.240799999999581],[-88.077179999999942,35.468250000000069,14.279699999999139],[-88.077069999999935,35.468120000000056,14.292499999995925],[-88.076309999999978,35.467400000000055,14.370899999994435],[-88.075229999999976,35.466530000000034,14.474700000006123],[-88.073299999999961,35.465440000000058,14.640700000003562],[-88.072999999999979,35.465330000000051,14.664600000003702],[-88.072179999999946,35.465150000000051,14.727400000003399],[-88.071989999999971,35.465080000000057,14.742599999997765],[-88.071799999999939,35.464990000000057,14.758300000001327],[-88.071639999999945,35.464870000000076,14.773300000000745],[-88.071159999999963,35.464440000000025,14.821599999995669],[-88.070299999999975,35.463580000000036,14.912599999996019],[-88.070069999999987,35.463430000000074,14.933199999999488],[-88.069799999999987,35.463340000000073,14.954500000007101],[-88.069149999999979,35.46327000000008,15.00340000000142],[-88.068439999999953,35.463250000000073,15.056599999996251],[-88.067669999999964,35.463190000000054,15.114499999996042],[-88.066759999999988,35.463170000000048,15.182600000000093],[-88.066469999999981,35.463090000000079,15.205100000006496],[-88.066229999999962,35.462930000000028,15.226699999999255],[-88.066109999999981,35.462790000000041,15.240499999999884],[-88.065869999999961,35.462310000000059,15.28070000000298],[-88.065699999999936,35.461870000000033,15.31600000000617],[-88.065649999999948,35.461650000000077,15.33289999999397],[-88.06583999999998,35.460440000000062,15.424599999998463],[-88.065879999999936,35.459280000000035,15.511499999993248],[-88.065819999999974,35.458940000000041,15.537400000001071],[-88.065689999999961,35.458700000000078,15.557799999995041],[-88.065579999999954,35.458560000000034,15.571200000005774],[-88.064679999999953,35.457720000000052,15.663300000000163],[-88.06436999999994,35.457370000000026,15.698300000003655],[-88.064199999999971,35.457430000000045,15.711699999999837],[-88.063489999999945,35.457520000000045,15.764999999999418],[-88.062569999999937,35.457550000000026,15.833400000003166],[-88.062059999999974,35.457610000000045,15.87159999999858],[-88.061679999999967,35.457720000000052,15.901100000002771],[-88.061539999999979,35.457840000000033,15.91479999999865],[-88.061489999999935,35.457910000000027,15.921199999997043],[-88.061439999999948,35.458070000000077,15.933600000003935],[-88.061469999999986,35.458800000000053,15.987999999997555],[-88.061509999999942,35.459160000000054,16.014899999994668],[-88.061589999999967,35.459400000000073,16.033699999999953],[-88.061859999999967,35.459950000000049,16.079299999997602],[-88.061909999999955,35.460110000000043,16.091799999994691],[-88.061939999999936,35.460360000000037,16.110499999995227],[-88.061919999999986,35.46076000000005,16.140299999999115],[-88.062059999999974,35.461420000000032,16.190499999996973],[-88.06207999999998,35.461690000000033,16.210600000005797],[-88.062049999999942,35.461950000000058,16.230100000000675],[-88.061919999999986,35.462280000000078,16.256500000003143],[-88.061699999999973,35.462580000000059,16.2841000000044],[-88.061399999999935,35.462860000000035,16.314700000002631],[-88.061199999999985,35.463010000000054,16.333299999998417],[-88.060829999999953,35.463210000000061,16.364499999996042],[-88.060459999999978,35.46345000000008,16.397299999996903],[-88.060149999999965,35.463610000000074,16.423299999994924],[-88.059899999999971,35.463680000000068,16.442599999994854],[-88.059519999999964,35.46372000000008,16.471000000005006],[-88.059149999999988,35.463800000000049,16.499200000005658],[-88.057859999999948,35.464260000000024,16.600999999995111],[-88.057279999999935,35.464380000000062,16.645099999994272],[-88.057109999999966,35.464440000000025,16.658500000005006],[-88.056459999999959,35.464840000000038,16.715299999996205],[-88.055789999999945,35.465430000000026,16.781700000006822],[-88.055629999999951,35.465540000000033,16.796100000006845],[-88.054969999999969,35.465800000000058,16.848899999997229],[-88.054239999999936,35.466180000000065,16.91009999999369],[-88.054029999999955,35.466360000000066,16.930699999997159],[-88.053849999999954,35.466720000000066,16.960600000005797],[-88.053819999999973,35.466870000000029,16.972099999999045],[-88.05374999999998,35.468020000000024,17.059200000003329],[-88.053639999999973,35.468690000000038,17.110499999995227],[-88.053679999999986,35.469040000000064,17.137100000007194],[-88.053869999999961,35.46977000000004,17.194099999993341],[-88.053849999999954,35.470160000000078,17.223599999997532],[-88.053769999999986,35.470320000000072,17.237099999998463],[-88.053649999999948,35.47046000000006,17.25109999999404],[-88.053269999999941,35.470790000000079,17.289099999994505],[-88.052869999999984,35.471020000000067,17.323999999993248],[-88.05270999999999,35.47115000000008,17.339500000001863],[-88.052479999999946,35.471400000000074,17.365200000000186],[-88.05243999999999,35.471520000000055,17.374800000005052],[-88.05245999999994,35.471650000000068,17.384699999995064],[-88.05261999999999,35.471860000000049,17.404599999994389],[-88.052739999999972,35.471970000000056,17.416899999996531],[-88.052969999999959,35.472090000000037,17.436499999996158],[-88.053029999999978,35.472160000000031,17.443499999993946],[-88.053119999999979,35.47231000000005,17.45669999999518],[-88.053199999999947,35.472540000000038,17.475099999996019],[-88.053229999999985,35.472700000000032,17.487399999998161],[-88.053229999999985,35.472950000000026,17.506299999993644],[-88.053109999999947,35.473750000000052,17.567399999999907],[-88.053229999999985,35.474340000000041,17.612899999992806],[-88.053269999999941,35.474750000000029,17.644000000000233],[-88.053309999999954,35.475110000000029,17.671400000006543],[-88.053269999999941,35.475330000000042,17.688299999994342],[-88.053099999999972,35.475630000000024,17.714399999997113],[-88.053039999999953,35.475690000000043,17.720799999995506],[-88.05281999999994,35.475780000000043,17.7387000000017],[-88.05263999999994,35.475790000000075,17.752399999997579],[-88.052479999999946,35.47574000000003,17.764999999999418],[-88.052269999999965,35.475610000000074,17.783699999999953],[-88.051759999999945,35.47518000000008,17.834099999992759],[-88.051219999999944,35.474800000000073,17.884000000005472],[-88.050929999999937,35.474640000000079,17.908999999999651],[-88.050749999999937,35.474610000000041,17.922800000000279],[-88.050589999999943,35.47467000000006,17.935700000001816],[-88.050399999999968,35.474830000000054,17.954500000007101],[-88.050229999999942,35.475050000000067,17.975500000000466],[-88.05016999999998,35.475210000000061,17.988400000002002],[-88.050159999999948,35.47529000000003,17.994500000000698],[-88.050229999999942,35.476150000000075,18.059699999997974],[-88.050139999999942,35.476590000000044,18.093599999992875],[-88.050049999999942,35.476820000000032,18.112299999993411],[-88.049929999999961,35.47703000000007,18.130499999999302],[-88.049369999999954,35.477580000000046,18.189799999992829],[-88.04929999999996,35.477730000000065,18.202399999994668],[-88.049289999999985,35.477890000000059,18.214500000001863],[-88.049339999999972,35.478040000000078,18.226399999999558],[-88.049559999999985,35.478440000000035,18.260899999993853],[-88.050179999999955,35.479440000000068,18.349799999996321],[-88.050319999999942,35.479780000000062,18.377600000007078],[-88.050389999999936,35.480110000000025,18.403099999995902],[-88.050419999999974,35.480730000000051,18.44999999999709],[-88.050389999999936,35.48097000000007,18.468299999993178],[-88.050319999999942,35.481140000000039,18.482099999993807],[-88.050129999999967,35.481360000000052,18.504100000005565],[-88.049959999999942,35.481470000000058,18.51940000000468],[-88.04929999999996,35.481780000000072,18.574500000002445],[-88.049099999999953,35.481920000000059,18.592900000003283],[-88.04858999999999,35.482890000000054,18.675700000007055],[-88.048369999999977,35.483360000000062,18.714999999996508],[-88.048279999999977,35.483510000000024,18.728199999997742],[-88.048049999999989,35.483760000000075,18.753800000005867],[-88.04789999999997,35.483870000000024,18.767900000006193],[-88.047259999999937,35.484140000000025,18.82039999999688],[-88.046929999999975,35.484300000000076,18.848100000002887],[-88.046099999999967,35.484810000000039,18.92170000000624],[-88.045899999999961,35.48500000000007,18.942500000004657],[-88.045459999999935,35.485580000000027,18.997499999997672],[-88.045309999999972,35.48571000000004,19.01249999999709],[-88.045129999999972,35.485820000000047,19.028500000000349],[-88.044819999999959,35.485910000000047,19.052899999995134],[-88.043649999999957,35.486000000000047,19.141499999997905],[-88.043369999999982,35.486050000000034,19.163000000000466],[-88.041809999999941,35.486660000000029,19.289600000003702],[-88.041529999999966,35.486720000000048,19.311199999996461],[-88.040939999999978,35.486750000000029,19.355899999995017],[-88.040639999999939,35.486810000000048,19.379000000000815],[-88.039829999999938,35.48709000000008,19.443700000003446],[-88.039549999999963,35.487240000000043,19.467699999993783],[-88.039339999999982,35.487430000000074,19.489100000006147],[-88.038929999999937,35.488020000000063,19.543399999995017],[-88.038799999999981,35.488140000000044,19.556800000005751],[-88.037819999999954,35.488460000000032,19.634699999995064],[-88.037619999999947,35.488590000000045,19.652700000006007]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}], "directions": [{"text": "Start at Jim Hayes Rd", "length": 0, "time": 0, "geometry": null}, {"text": "Go northwest on Jim Hayes Rd toward TN-114", "length": 0.2690286934375763, "time": 0.3247204124927521, "geometry": "{\"hasM\":true,\"paths\":[[[-88.224409999999978,35.496660000000077,0],[-88.224639999999965,35.496940000000052,0.028300000005401671],[-88.224879999999985,35.497210000000052,0.056500000006053597],[-88.225269999999966,35.497820000000047,0.11299999999755528],[-88.225559999999973,35.498410000000035,0.16439999999420252],[-88.225739999999973,35.498830000000055,0.20010000000183936],[-88.226399999999956,35.499780000000044,0.29039999999804422],[-88.226599999999962,35.500030000000038,0.31540000000677537],[-88.226589999999987,35.500070000000051,0.31859999999869615],[-88.226529999999968,35.500120000000038,0.3246999999973923]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Turn right on TN-114", "length": 5.983545780181885, "time": 6.831060409545898, "geometry": "{\"hasM\":true,\"paths\":[[[-88.226529999999968,35.500120000000038,0.3246999999973923],[-88.226329999999962,35.499910000000057,0.34450000000651926],[-88.226059999999961,35.499670000000037,0.36909999999625143],[-88.225909999999942,35.499560000000031,0.38180000000284053],[-88.225739999999973,35.499460000000056,0.39530000000377186],[-88.225379999999973,35.499280000000056,0.42269999999552965],[-88.224999999999966,35.499130000000036,0.45059999999648426],[-88.224589999999978,35.499010000000055,0.47969999999622814],[-88.224169999999958,35.498940000000061,0.50879999999597203],[-88.223959999999977,35.498920000000055,0.52319999999599531],[-88.223609999999951,35.498920000000055,0.54700000000593718],[-88.222439999999949,35.499000000000024,0.6269999999931315],[-88.222009999999955,35.499030000000062,0.65640000000712462],[-88.22157999999996,35.499050000000068,0.68580000000656582],[-88.221369999999979,35.499050000000068,0.70010000000183936],[-88.22097999999994,35.499010000000055,0.72680000000400469],[-88.220589999999959,35.498950000000036,0.75380000000586733],[-88.220379999999977,35.498900000000049,0.76850000000558794],[-88.220179999999971,35.49884000000003,0.78269999999611173],[-88.219989999999939,35.498770000000036,0.79649999999674037],[-88.219609999999989,35.498620000000074,0.82439999999769498],[-88.219239999999957,35.498450000000048,0.85219999999389984],[-88.218679999999949,35.498180000000048,0.89459999999962747],[-88.218069999999955,35.497890000000041,0.94060000000172295],[-88.217679999999973,35.497700000000066,0.97019999999611173],[-88.217249999999979,35.497500000000059,1.0026000000070781],[-88.216819999999984,35.497300000000052,1.0348999999987427],[-88.21596999999997,35.496890000000064,1.0993000000016764],[-88.215329999999938,35.496610000000032,1.1469000000070082],[-88.214699999999937,35.496380000000045,1.1926999999996042],[-88.214079999999967,35.496170000000063,1.2372999999934109],[-88.213669999999979,35.496030000000076,1.2669000000023516],[-88.21324999999996,35.495900000000063,1.2969000000011874],[-88.21309999999994,35.495850000000075,1.3076000000000931],[-88.212569999999971,35.49568000000005,1.3456000000005588],[-88.211789999999951,35.495420000000024,1.4017000000021653],[-88.211379999999963,35.495290000000068,1.4309999999968568],[-88.210759999999937,35.49508000000003,1.4756999999954132],[-88.210149999999942,35.494870000000049,1.5197000000043772],[-88.20993999999996,35.49479000000008,1.5350000000034925],[-88.209529999999972,35.494600000000048,1.5657999999966705],[-88.209129999999959,35.494400000000041,1.5963000000047032],[-88.208929999999953,35.49428000000006,1.6122000000032131],[-88.208549999999946,35.494020000000035,1.6435999999957858],[-88.208359999999971,35.493880000000047,1.6597000000037951],[-88.208169999999939,35.493730000000028,1.6762000000016997],[-88.207889999999963,35.493480000000034,1.7017999999952735],[-88.207649999999944,35.493250000000046,1.724499999996624],[-88.207499999999982,35.493080000000077,1.7400000000052387],[-88.207239999999956,35.492740000000026,1.7691999999951804],[-88.20712999999995,35.492580000000032,1.7823999999964144],[-88.206859999999949,35.492120000000057,1.8187999999936437],[-88.206829999999968,35.492070000000069,1.8227999999944586],[-88.206619999999987,35.491690000000062,1.8524000000033993],[-88.206439999999986,35.49141000000003,1.8751000000047497],[-88.206129999999973,35.490990000000068,1.9106999999930849],[-88.205829999999935,35.490610000000061,1.9437000000034459],[-88.205809999999985,35.49058000000008,1.9462000000057742],[-88.205669999999941,35.490400000000079,1.961699999999837],[-88.205499999999972,35.490200000000073,1.9796000000060303],[-88.205329999999947,35.48998000000006,1.9986000000062631],[-88.205049999999972,35.489590000000078,2.0313000000023749],[-88.204889999999978,35.489280000000065,2.0550999999977648],[-88.20474999999999,35.488960000000077,2.0788999999931548],[-88.204649999999958,35.488630000000057,2.1024999999935972],[-88.204579999999964,35.488280000000032,2.1267999999981839],[-88.204549999999983,35.487910000000056,2.1521000000066124],[-88.204539999999952,35.487740000000031,2.16370000000461],[-88.204559999999958,35.487210000000061,2.1999000000068918],[-88.204599999999971,35.486700000000042,2.2348000000056345],[-88.204629999999952,35.486170000000072,2.2709999999933643],[-88.204629999999952,35.486050000000034,2.2792000000044936],[-88.204619999999977,35.48562000000004,2.3084999999991851],[-88.204629999999952,35.485250000000065,2.3337999999930616],[-88.204639999999984,35.485050000000058,2.3473999999987427],[-88.204649999999958,35.484880000000032,2.3589999999967404],[-88.204669999999965,35.484480000000076,2.3864000000030501],[-88.204709999999977,35.483690000000024,2.4403000000020256],[-88.20474999999999,35.483080000000029,2.4820000000036089],[-88.20474999999999,35.482490000000041,2.5222000000067055],[-88.204699999999946,35.482100000000059,2.5491000000038184],[-88.204589999999939,35.481720000000053,2.5760000000009313],[-88.204429999999945,35.481350000000077,2.6034999999974389],[-88.204219999999964,35.480990000000077,2.6319999999977881],[-88.203949999999963,35.480680000000064,2.6600000000034925],[-88.203659999999957,35.480410000000063,2.6870000000053551],[-88.203359999999975,35.480180000000075,2.7127999999938766],[-88.203219999999988,35.480080000000044,2.724499999996624],[-88.202899999999943,35.479900000000043,2.7495999999955529],[-88.202339999999936,35.479660000000024,2.7911000000021886],[-88.201509999999985,35.479330000000061,2.852100000003702],[-88.200839999999971,35.479070000000036,2.9011000000027707],[-88.20020999999997,35.478810000000067,2.9475999999995111],[-88.199969999999951,35.478710000000035,2.9652999999962049],[-88.19933999999995,35.478460000000041,3.0114999999932479],[-88.198939999999936,35.478290000000072,3.0412000000069384],[-88.198569999999961,35.478120000000047,3.0688999999983935],[-88.198019999999985,35.477820000000065,3.1116999999940163],[-88.197649999999953,35.477590000000077,3.1413999999931548],[-88.197089999999946,35.477230000000077,3.1867999999958556],[-88.196709999999939,35.476980000000026,3.2177999999985332],[-88.196329999999989,35.476720000000057,3.2492000000056578],[-88.19593999999995,35.476470000000063,3.2807999999931781],[-88.19548999999995,35.476180000000056,3.3172999999951571],[-88.195339999999987,35.476080000000024,3.3295999999972992],[-88.194939999999974,35.475820000000056,3.3622000000032131],[-88.194329999999979,35.475420000000042,3.4119000000064261],[-88.193719999999985,35.475030000000061,3.46129999999539],[-88.19310999999999,35.474630000000047,3.5111000000033528],[-88.19268999999997,35.474370000000079,3.5446999999985565],[-88.192059999999969,35.474010000000078,3.5942000000068219],[-88.190979999999968,35.473420000000033,3.6781999999948312],[-88.19014999999996,35.472960000000057,3.7428999999974621],[-88.189209999999946,35.472440000000063,3.8162000000011176],[-88.189089999999965,35.472380000000044,3.8252999999967869],[-88.189049999999952,35.472360000000037,3.8283999999985099],[-88.188559999999939,35.472090000000037,3.8665000000037253],[-88.188009999999963,35.47180000000003,3.908899999994901],[-88.187429999999949,35.471480000000042,3.9541000000026543],[-88.187039999999968,35.471270000000061,3.9842999999964377],[-88.186659999999961,35.471080000000029,4.0133000000059837],[-88.186269999999979,35.470900000000029,4.0426000000006752],[-88.185879999999941,35.470760000000041,4.0709000000060769],[-88.185289999999952,35.470570000000066,4.113100000002305],[-88.184679999999958,35.470400000000041,4.1563000000023749],[-88.184289999999976,35.470280000000059,4.1842000000033295],[-88.184189999999944,35.470250000000078,4.1913000000058673],[-88.184109999999976,35.470230000000072,4.1968999999953667],[-88.18393999999995,35.470170000000053,4.2091999999975087],[-88.183409999999981,35.469970000000046,4.247799999997369],[-88.18304999999998,35.469820000000027,4.2743999999947846],[-88.182679999999948,35.469650000000058,4.3022000000055414],[-88.181959999999947,35.469290000000058,4.3570999999938067],[-88.181789999999978,35.469200000000058,4.3702000000048429],[-88.181609999999978,35.469110000000057,4.3839000000007218],[-88.181319999999971,35.468960000000038,4.4061999999976251],[-88.18086999999997,35.468740000000025,4.4404000000067754],[-88.180489999999963,35.468540000000075,4.4697000000014668],[-88.179929999999956,35.468260000000043,4.5124000000068918],[-88.179359999999974,35.467980000000068,4.5556999999971595],[-88.178969999999936,35.467800000000068,4.5850000000064028],[-88.178589999999986,35.467630000000042,4.6134000000020023],[-88.178049999999985,35.467430000000036,4.652700000006007],[-88.177839999999946,35.467350000000067,4.6680000000051223],[-88.177689999999984,35.46730000000008,4.6787999999942258],[-88.177309999999977,35.467200000000048,4.7056000000011409],[-88.176909999999964,35.467100000000073,4.7336999999970431],[-88.176489999999944,35.467020000000048,4.7627999999967869],[-88.176049999999975,35.466940000000079,4.7933000000048196],[-88.175179999999955,35.466770000000054,4.8537999999971362],[-88.174549999999954,35.466660000000047,4.8974000000016531],[-88.174069999999972,35.466570000000047,4.9306999999971595],[-88.173929999999984,35.466540000000066,4.9404999999969732],[-88.17387999999994,35.466530000000034,4.9440000000031432],[-88.17351999999994,35.466470000000072,4.9689000000071246],[-88.172639999999944,35.466310000000078,5.0298999999940861],[-88.171879999999987,35.466160000000059,5.0826999999990221],[-88.171679999999981,35.466130000000078,5.0964999999996508],[-88.171179999999936,35.466040000000078,5.1312000000034459],[-88.170419999999979,35.465900000000033,5.1839000000036322],[-88.169929999999965,35.465810000000033,5.2177999999985332],[-88.169439999999952,35.465740000000039,5.2516000000032363],[-88.168729999999982,35.465680000000077,5.300199999997858],[-88.167699999999968,35.465640000000064,5.3705000000045402],[-88.167299999999955,35.465620000000058,5.3978000000061002],[-88.16659999999996,35.465590000000077,5.4456000000063796],[-88.165639999999939,35.465550000000064,5.5111000000033528],[-88.165159999999958,35.465530000000058,5.5439000000042142],[-88.164449999999988,35.465500000000077,5.5923999999940861],[-88.163279999999986,35.465450000000033,5.6723000000056345],[-88.163189999999986,35.465450000000033,5.6784000000043306],[-88.163029999999935,35.465440000000058,5.6892999999981839],[-88.162079999999946,35.465400000000045,5.7541999999957625],[-88.16158999999999,35.465380000000039,5.7875999999960186],[-88.160859999999957,35.465380000000039,5.8374000000039814],[-88.160139999999956,35.465430000000026,5.8865999999979977],[-88.159209999999973,35.465500000000077,5.9502000000065891],[-88.158969999999954,35.465520000000026,5.9667000000044936],[-88.158519999999953,35.465550000000064,5.9973999999929219],[-88.158059999999978,35.465580000000045,6.0289000000047963],[-88.157619999999952,35.465620000000058,6.05899999999383],[-88.157179999999983,35.465650000000039,6.0890999999974156],[-88.15653999999995,35.465690000000052,6.1328000000066822],[-88.156259999999975,35.465710000000058,6.1520000000018626],[-88.155679999999961,35.465760000000046,6.1916999999957625],[-88.155009999999947,35.465810000000033,6.2375000000029104],[-88.154459999999972,35.465850000000046,6.275099999998929],[-88.15426999999994,35.465860000000077,6.2881000000052154],[-88.15388999999999,35.465860000000077,6.3139999999984866],[-88.153499999999951,35.465820000000065,6.3407000000006519],[-88.153299999999945,35.465790000000027,6.3545000000012806],[-88.152899999999988,35.465700000000027,6.3825000000069849],[-88.15250999999995,35.465550000000064,6.4109999999927823],[-88.152319999999975,35.465470000000039,6.4250999999931082],[-88.151899999999955,35.465240000000051,6.4576999999990221],[-88.151589999999942,35.465080000000057,6.4814999999944121],[-88.151399999999967,35.464980000000025,6.4961999999941327],[-88.150699999999972,35.464620000000025,6.5498999999981606],[-88.150349999999946,35.464440000000025,6.5767000000050757],[-88.150139999999965,35.46434000000005,6.5926000000035856],[-88.149609999999939,35.46410000000003,6.6321999999927357],[-88.149209999999982,35.463950000000068,6.6613999999972293],[-88.149039999999957,35.463890000000049,6.6736999999993714],[-88.14856999999995,35.46372000000008,6.7078000000037719],[-88.147929999999974,35.463490000000036,6.7541000000055647],[-88.147289999999941,35.463250000000073,6.8007999999972526],[-88.147089999999935,35.463170000000048,6.8154999999969732],[-88.14689999999996,35.463080000000048,6.8298000000067987],[-88.146719999999959,35.462980000000073,6.8438000000023749],[-88.146549999999991,35.462880000000041,6.8573000000033062],[-88.146229999999946,35.462650000000053,6.8842000000004191],[-88.146079999999984,35.462530000000072,6.8972999999969034],[-88.145789999999977,35.46225000000004,6.9247999999934109],[-88.145539999999983,35.461930000000052,6.9524999999994179],[-88.145439999999951,35.461760000000027,6.9658999999955995],[-88.145249999999976,35.461400000000026,6.9937000000063563],[-88.145169999999951,35.461220000000026,7.0071000000025379],[-88.14489999999995,35.460480000000075,7.0608000000065658],[-88.144859999999937,35.460370000000069,7.0687999999936437],[-88.144569999999987,35.459530000000029,7.129400000005262],[-88.144489999999962,35.459320000000048,7.144799999994575],[-88.144429999999943,35.459170000000029,7.1557999999931781]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Turn left on Dunbar Rd", "length": 0.10333266109228134, "time": 0.12472358345985413, "geometry": "{\"hasM\":true,\"paths\":[[[-88.144429999999943,35.459170000000029,7.1557999999931781],[-88.144259999999974,35.459150000000079,7.1687999999994645],[-88.144109999999955,35.459220000000073,7.1812999999965541],[-88.143279999999947,35.460230000000024,7.2804999999934807]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Turn right on Pete Tucker Loop", "length": 0.37098467350006104, "time": 0.44778233766555786, "geometry": "{\"hasM\":true,\"paths\":[[[-88.143279999999947,35.460230000000024,7.2804999999934807],[-88.143159999999966,35.460190000000068,7.2893999999942025],[-88.143069999999966,35.460210000000075,7.2958999999973457],[-88.142379999999946,35.46067000000005,7.354300000006333],[-88.140879999999981,35.461470000000077,7.4741000000067288],[-88.140539999999987,35.461620000000039,7.5002999999996973],[-88.139549999999986,35.462010000000078,7.5752000000065891],[-88.139239999999972,35.46207000000004,7.5975000000034925],[-88.137949999999989,35.462010000000078,7.688399999999092],[-88.137649999999951,35.46207000000004,7.7100000000064028],[-88.137409999999988,35.462170000000071,7.7283000000024913]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Turn right on Keeton Cemetery Rd", "length": 1.609391689300537, "time": 1.9425523281097412, "geometry": "{\"hasM\":true,\"paths\":[[[-88.137409999999988,35.462170000000071,7.7283000000024913],[-88.137249999999938,35.462100000000078,7.741200000004028],[-88.136619999999937,35.462060000000065,7.7878000000055181],[-88.135069999999985,35.462000000000046,7.90230000000156],[-88.134289999999964,35.461930000000052,7.9602000000013504],[-88.133789999999976,35.461970000000065,7.9971999999979744],[-88.132969999999943,35.461930000000052,8.0577999999950407],[-88.132569999999987,35.462000000000046,8.0877999999938766],[-88.131729999999948,35.462050000000033,8.1499000000039814],[-88.131149999999991,35.46216000000004,8.1934999999939464],[-88.130179999999939,35.461990000000071,8.2661999999982072],[-88.129799999999989,35.461880000000065,8.2954000000027008],[-88.129599999999982,35.461850000000027,8.3104000000021188],[-88.129389999999944,35.461860000000058,8.3258999999961816],[-88.129009999999937,35.461920000000077,8.354300000006333],[-88.128349999999955,35.461930000000052,8.4030000000057044],[-88.128179999999986,35.461900000000071,8.4158000000024913],[-88.127879999999948,35.461780000000033,8.4395999999978812],[-88.127719999999954,35.461770000000058,8.4514999999955762],[-88.127169999999978,35.461940000000027,8.4940000000060536],[-88.126429999999971,35.462050000000033,8.5491999999940163],[-88.126219999999989,35.462100000000078,8.5651999999972759],[-88.125149999999962,35.462610000000041,8.652700000006007],[-88.124989999999968,35.462730000000079,8.6674999999959255],[-88.124729999999943,35.46303000000006,8.6968000000051688],[-88.124469999999974,35.463550000000055,8.7397000000055414],[-88.124279999999942,35.463900000000024,8.7691000000049826],[-88.124149999999986,35.464080000000024,8.7854999999981374],[-88.124049999999954,35.464150000000075,8.7945000000036089],[-88.12352999999996,35.464410000000044,8.8374000000039814],[-88.123389999999972,35.464540000000056,8.8515000000043074],[-88.123269999999991,35.464690000000076,8.8656999999948312],[-88.123129999999946,35.46503000000007,8.8929000000061933],[-88.123149999999953,35.465480000000071,8.9260999999969499],[-88.123129999999946,35.465650000000039,8.938800000003539],[-88.122879999999952,35.46601000000004,8.9710999999952037],[-88.120949999999937,35.468260000000043,9.1900000000023283],[-88.120589999999936,35.468720000000076,9.2332000000023982],[-88.120319999999936,35.469000000000051,9.261899999997695],[-88.119359999999972,35.470210000000066,9.375899999999092],[-88.119229999999959,35.470440000000053,9.3953999999939697],[-88.118889999999965,35.471280000000036,9.4622999999992317],[-88.118479999999977,35.472530000000063,9.5595000000030268],[-88.118359999999939,35.472840000000076,9.5840000000025611],[-88.118069999999989,35.473390000000052,9.6298999999999069],[-88.117959999999982,35.473510000000033,9.6420000000071013],[-88.117709999999988,35.473670000000027,9.6638999999995576],[-88.117659999999944,35.473750000000052,9.6708000000071479]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Turn right on Batty Rd", "length": 0.7469155192375183, "time": 0.9015347361564636, "geometry": "{\"hasM\":true,\"paths\":[[[-88.117659999999944,35.473750000000052,9.6708000000071479],[-88.117459999999937,35.473720000000071,9.6867000000056578],[-88.117359999999962,35.473720000000071,9.6946000000025379],[-88.116929999999968,35.473760000000027,9.7284999999974389],[-88.116799999999955,35.473810000000071,9.739400000005844],[-88.116509999999948,35.47407000000004,9.7698999999993248],[-88.115559999999959,35.47467000000006,9.8580999999976484],[-88.115399999999966,35.47485000000006,9.8769999999931315],[-88.115279999999984,35.475350000000049,9.9174000000057276],[-88.115219999999965,35.475730000000055,9.9475999999995111],[-88.115279999999984,35.476490000000069,10.007400000002235],[-88.115259999999978,35.477050000000077,10.051399999996647],[-88.115039999999965,35.47774000000004,10.108200000002398],[-88.114889999999946,35.478150000000028,10.142500000001746],[-88.11475999999999,35.478360000000066,10.161900000006426],[-88.114359999999976,35.478870000000029,10.212700000003679],[-88.113849999999957,35.479430000000036,10.272200000006706],[-88.113419999999962,35.479840000000024,10.318799999993644],[-88.113229999999987,35.480110000000025,10.344700000001467],[-88.112829999999974,35.48088000000007,10.412800000005518],[-88.112659999999948,35.481140000000039,10.437200000000303],[-88.112479999999948,35.481510000000071,10.469500000006519],[-88.111999999999966,35.48273000000006,10.572400000004563]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Make a sharp right on Highway 641 S (TN-69)", "length": 1.9078037738800049, "time": 2.0698776245117188, "geometry": "{\"hasM\":true,\"paths\":[[[-88.111999999999966,35.48273000000006,10.572400000004563],[-88.111429999999984,35.481960000000072,10.636700000002747],[-88.107369999999946,35.476470000000063,11.095199999996112],[-88.106589999999983,35.475420000000042,11.183099999994738],[-88.106129999999951,35.474810000000048,11.234400000001187],[-88.105659999999943,35.474230000000034,11.284499999994296],[-88.105149999999981,35.473680000000058,11.334799999996903],[-88.104779999999948,35.473320000000058,11.369500000000698],[-88.104399999999941,35.472980000000064,11.403800000000047],[-88.103999999999985,35.472660000000076,11.438200000004144],[-88.10358999999994,35.472350000000063,11.47269999999844],[-88.102959999999939,35.471930000000043,11.523499999995693],[-88.102079999999944,35.471390000000042,11.592799999998533],[-88.100529999999935,35.470450000000028,11.714600000006612],[-88.099789999999985,35.470000000000027,11.77270000000135],[-88.099079999999958,35.469580000000065,11.828099999998813],[-88.098819999999989,35.469420000000071,11.848599999997532],[-88.098409999999944,35.469170000000076,11.880900000003749],[-88.09797999999995,35.468910000000051,11.914600000003702],[-88.097149999999942,35.468410000000063,11.979699999996228],[-88.097069999999974,35.468360000000075,11.986000000004424],[-88.096329999999966,35.467900000000043,12.044500000003609],[-88.09579999999994,35.46757000000008,12.08640000000014],[-88.095349999999939,35.467290000000048,12.122000000003027],[-88.094899999999939,35.467020000000048,12.157300000006217],[-88.094229999999982,35.466600000000028,12.210399999996298],[-88.093779999999981,35.466330000000028,12.245599999994738],[-88.092859999999973,35.465760000000046,12.318299999998999],[-88.091929999999991,35.465200000000038,12.391199999998207],[-88.091229999999939,35.464770000000044,12.446400000000722],[-88.090759999999989,35.464490000000069,12.483099999997648],[-88.090049999999962,35.464050000000043,12.539199999999255],[-88.088739999999973,35.463250000000073,12.642300000006799]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Make a sharp left on Ligiele County Rd", "length": 0.7512325048446655, "time": 0.9067453742027283, "geometry": "{\"hasM\":true,\"paths\":[[[-88.088739999999973,35.463250000000073,12.642300000006799],[-88.088879999999961,35.46345000000008,12.661399999997229],[-88.088979999999935,35.46354000000008,12.672000000005937],[-88.089149999999961,35.463800000000049,12.696400000000722],[-88.089109999999948,35.464110000000062,12.720900000000256],[-88.089049999999986,35.464170000000024,12.727599999998347],[-88.08893999999998,35.464190000000031,12.736399999994319],[-88.088729999999941,35.464170000000024,12.752999999996973],[-88.088569999999947,35.464210000000037,12.76589999999851],[-88.08818999999994,35.464480000000037,12.802500000005239],[-88.088039999999978,35.464650000000063,12.820300000006682],[-88.087899999999991,35.464920000000063,12.844200000006822],[-88.087679999999978,35.465220000000045,12.873399999996764],[-88.08753999999999,35.465440000000058,12.893899999995483],[-88.087419999999952,35.465580000000045,12.908400000000256],[-88.087009999999964,35.465840000000071,12.946500000005472],[-88.086889999999983,35.465980000000059,12.960999999995693],[-88.08666999999997,35.466500000000053,13.005300000004354],[-88.086469999999963,35.467090000000042,13.054300000003423],[-88.086129999999969,35.467640000000074,13.105100000000675],[-88.085929999999962,35.467850000000055,13.127800000002026],[-88.085219999999936,35.468350000000044,13.195999999996275],[-88.085159999999973,35.468440000000044,13.204500000007101],[-88.085149999999942,35.468590000000063,13.216300000000047],[-88.085319999999967,35.469130000000064,13.260800000003655],[-88.085399999999936,35.469510000000071,13.291299999997136],[-88.085649999999987,35.470120000000065,13.34309999999823],[-88.085719999999981,35.470510000000047,13.374200000005658],[-88.085729999999955,35.470770000000073,13.394599999999627],[-88.085669999999936,35.471020000000067,13.41479999999865],[-88.085439999999949,35.471560000000068,13.460900000005495],[-88.084949999999935,35.472300000000075,13.53059999999823],[-88.084869999999967,35.472380000000044,13.539499999998952],[-88.08475999999996,35.472430000000031,13.548999999999069]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Turn right on Bobs Landing Rd", "length": 1.780713677406311, "time": 2.1493399143218994, "geometry": "{\"hasM\":true,\"paths\":[[[-88.08475999999996,35.472430000000031,13.548999999999069],[-88.084629999999947,35.471860000000049,13.592499999998836],[-88.084369999999979,35.47124000000008,13.642500000001746],[-88.084319999999991,35.47106000000008,13.656400000007125],[-88.084079999999972,35.470570000000066,13.696899999995367],[-88.083919999999978,35.470370000000059,13.716000000000349],[-88.083719999999971,35.470200000000034,13.735499999995227],[-88.081409999999948,35.468860000000063,13.93409999999858],[-88.081219999999973,35.468810000000076,13.948699999993551],[-88.080929999999967,35.468820000000051,13.970300000000861],[-88.079739999999958,35.469200000000058,14.063200000004144],[-88.079439999999977,35.469270000000051,14.086100000000442],[-88.079019999999957,35.469310000000064,14.117400000002817],[-88.078539999999975,35.469320000000039,14.153099999995902],[-88.078339999999969,35.469300000000032,14.16809999999532],[-88.078039999999987,35.469220000000064,14.191200000001118],[-88.077759999999955,35.469050000000038,14.215500000005704],[-88.077439999999967,35.468700000000069,14.250799999994342],[-88.077179999999942,35.468250000000069,14.289399999994203],[-88.077069999999935,35.468120000000056,14.302100000000792],[-88.076309999999978,35.467400000000055,14.379899999999907],[-88.075229999999976,35.466530000000034,14.483099999997648],[-88.073299999999961,35.465440000000058,14.647899999996298],[-88.072999999999979,35.465330000000051,14.67170000000624],[-88.072179999999946,35.465150000000051,14.73410000000149],[-88.071989999999971,35.465080000000057,14.749100000000908],[-88.071799999999939,35.464990000000057,14.76480000000447],[-88.071639999999945,35.464870000000076,14.779599999994389],[-88.071159999999963,35.464440000000025,14.827600000004168],[-88.070299999999975,35.463580000000036,14.918000000005122],[-88.070069999999987,35.463430000000074,14.938399999999092],[-88.069799999999987,35.463340000000073,14.959600000001956],[-88.069149999999979,35.46327000000008,15.008199999996577],[-88.068439999999953,35.463250000000073,15.061000000001513],[-88.067669999999964,35.463190000000054,15.118499999996857],[-88.066759999999988,35.463170000000048,15.186100000006263],[-88.066469999999981,35.463090000000079,15.208499999993364],[-88.066229999999962,35.462930000000028,15.229999999995925],[-88.066109999999981,35.462790000000041,15.243700000006356],[-88.065869999999961,35.462310000000059,15.283599999995204],[-88.065699999999936,35.461870000000033,15.318599999998696],[-88.065649999999948,35.461650000000077,15.335399999996298],[-88.06583999999998,35.460440000000062,15.426500000001397],[-88.065879999999936,35.459280000000035,15.512799999996787],[-88.065819999999974,35.458940000000041,15.538499999995111],[-88.065689999999961,35.458700000000078,15.558799999998882],[-88.065579999999954,35.458560000000034,15.572000000000116],[-88.064679999999953,35.457720000000052,15.66359999999986],[-88.06436999999994,35.457370000000026,15.698300000003655]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Turn left on Smith Gravel Pit Rd", "length": 3.276155710220337, "time": 3.9543538093566895, "geometry": "{\"hasM\":true,\"paths\":[[[-88.06436999999994,35.457370000000026,15.698300000003655],[-88.064199999999971,35.457430000000045,15.711899999994785],[-88.063489999999945,35.457520000000045,15.765700000003562],[-88.062569999999937,35.457550000000026,15.834900000001653],[-88.062059999999974,35.457610000000045,15.873500000001513],[-88.061679999999967,35.457720000000052,15.903200000000652],[-88.061539999999979,35.457840000000033,15.91710000000603],[-88.061489999999935,35.457910000000027,15.923599999994622],[-88.061439999999948,35.458070000000077,15.936199999996461],[-88.061469999999986,35.458800000000053,15.991099999999278],[-88.061509999999942,35.459160000000054,16.018299999996088],[-88.061589999999967,35.459400000000073,16.037299999996321],[-88.061859999999967,35.459950000000049,16.083400000003166],[-88.061909999999955,35.460110000000043,16.096000000005006],[-88.061939999999936,35.460360000000037,16.114900000000489],[-88.061919999999986,35.46076000000005,16.145000000004075],[-88.062059999999974,35.461420000000032,16.195800000001327],[-88.06207999999998,35.461690000000033,16.216100000005099],[-88.062049999999942,35.461950000000058,16.235799999994924],[-88.061919999999986,35.462280000000078,16.26249999999709],[-88.061699999999973,35.462580000000059,16.290399999998044],[-88.061399999999935,35.462860000000035,16.321299999995972],[-88.061199999999985,35.463010000000054,16.340100000001257],[-88.060829999999953,35.463210000000061,16.371700000003329],[-88.060459999999978,35.46345000000008,16.404800000003888],[-88.060149999999965,35.463610000000074,16.431100000001607],[-88.059899999999971,35.463680000000068,16.450599999996484],[-88.059519999999964,35.46372000000008,16.479300000006333],[-88.059149999999988,35.463800000000049,16.507800000006682],[-88.057859999999948,35.464260000000024,16.610700000004726],[-88.057279999999935,35.464380000000062,16.655199999993783],[-88.057109999999966,35.464440000000025,16.668799999999464],[-88.056459999999959,35.464840000000038,16.72620000000461],[-88.055789999999945,35.465430000000026,16.79330000000482],[-88.055629999999951,35.465540000000033,16.80789999999979],[-88.054969999999969,35.465800000000058,16.861199999999371],[-88.054239999999936,35.466180000000065,16.923099999999977],[-88.054029999999955,35.466360000000066,16.943899999998393],[-88.053849999999954,35.466720000000066,16.974100000006729],[-88.053819999999973,35.466870000000029,16.985599999999977],[-88.05374999999998,35.468020000000024,17.072199999995064],[-88.053639999999973,35.468690000000038,17.123300000006566],[-88.053679999999986,35.469040000000064,17.149799999999232],[-88.053869999999961,35.46977000000004,17.206500000000233],[-88.053849999999954,35.470160000000078,17.235799999994924],[-88.053769999999986,35.470320000000072,17.249299999995856],[-88.053649999999948,35.47046000000006,17.263099999996484],[-88.053269999999941,35.470790000000079,17.301000000006752],[-88.052869999999984,35.471020000000067,17.335699999995995],[-88.05270999999999,35.47115000000008,17.35120000000461],[-88.052479999999946,35.471400000000074,17.376699999993434],[-88.05243999999999,35.471520000000055,17.386199999993551],[-88.05245999999994,35.471650000000068,17.396099999998114],[-88.05261999999999,35.471860000000049,17.415999999997439],[-88.052739999999972,35.471970000000056,17.428199999994831],[-88.052969999999959,35.472090000000037,17.447700000004261],[-88.053029999999978,35.472160000000031,17.454599999997299],[-88.053119999999979,35.47231000000005,17.467799999998533],[-88.053199999999947,35.472540000000038,17.486099999994622],[-88.053229999999985,35.472700000000032,17.498300000006566],[-88.053229999999985,35.472950000000026,17.517099999997299],[-88.053109999999947,35.473750000000052,17.577900000003865],[-88.053229999999985,35.474340000000041,17.623200000001816],[-88.053269999999941,35.474750000000029,17.654200000004494],[-88.053309999999954,35.475110000000029,17.681400000001304],[-88.053269999999941,35.475330000000042,17.698199999998906],[-88.053099999999972,35.475630000000024,17.724100000006729],[-88.053039999999953,35.475690000000043,17.730500000005122],[-88.05281999999994,35.475780000000043,17.748399999996764],[-88.05263999999994,35.475790000000075,17.761899999997695],[-88.052479999999946,35.47574000000003,17.774499999999534],[-88.052269999999965,35.475610000000074,17.79309999999532],[-88.051759999999945,35.47518000000008,17.84320000000298],[-88.051219999999944,35.474800000000073,17.892900000006193],[-88.050929999999937,35.474640000000079,17.917799999995623],[-88.050749999999937,35.474610000000041,17.931500000006054],[-88.050589999999943,35.47467000000006,17.944300000002841],[-88.050399999999968,35.474830000000054,17.963000000003376],[-88.050229999999942,35.475050000000067,17.983900000006543],[-88.05016999999998,35.475210000000061,17.996799999993527],[-88.050159999999948,35.47529000000003,18.002800000002026],[-88.050229999999942,35.476150000000075,18.067699999999604],[-88.050139999999942,35.476590000000044,18.101500000004307],[-88.050049999999942,35.476820000000032,18.119999999995343],[-88.049929999999961,35.47703000000007,18.138200000001234],[-88.049369999999954,35.477580000000046,18.197199999995064],[-88.04929999999996,35.477730000000065,18.209700000006706],[-88.049289999999985,35.477890000000059,18.221699999994598],[-88.049339999999972,35.478040000000078,18.233600000006845],[-88.049559999999985,35.478440000000035,18.267900000006193],[-88.050179999999955,35.479440000000068,18.356400000004214],[-88.050319999999942,35.479780000000062,18.384000000005472],[-88.050389999999936,35.480110000000025,18.409400000004098],[-88.050419999999974,35.480730000000051,18.456000000005588],[-88.050389999999936,35.48097000000007,18.474199999996927],[-88.050319999999942,35.481140000000039,18.487999999997555],[-88.050129999999967,35.481360000000052,18.509900000004563],[-88.049959999999942,35.481470000000058,18.525099999998929],[-88.04929999999996,35.481780000000072,18.579899999996996],[-88.049099999999953,35.481920000000059,18.598299999997835],[-88.04858999999999,35.482890000000054,18.680699999997159],[-88.048369999999977,35.483360000000062,18.719700000001467],[-88.048279999999977,35.483510000000024,18.732799999997951],[-88.048049999999989,35.483760000000075,18.758400000006077],[-88.04789999999997,35.483870000000024,18.772299999996903],[-88.047259999999937,35.484140000000025,18.824600000007194],[-88.046929999999975,35.484300000000076,18.852100000003702],[-88.046099999999967,35.484810000000039,18.925399999992806],[-88.045899999999961,35.48500000000007,18.946100000001024],[-88.045459999999935,35.485580000000027,19.000799999994342],[-88.045309999999972,35.48571000000004,19.01579999999376],[-88.045129999999972,35.485820000000047,19.031600000002072],[-88.044819999999959,35.485910000000047,19.055900000006659],[-88.043649999999957,35.486000000000047,19.144100000004983],[-88.043369999999982,35.486050000000034,19.165500000002794],[-88.041809999999941,35.486660000000029,19.291400000001886],[-88.041529999999966,35.486720000000048,19.312900000004447],[-88.040939999999978,35.486750000000029,19.357300000003306],[-88.040639999999939,35.486810000000048,19.380300000004354],[-88.039829999999938,35.48709000000008,19.444799999997485],[-88.039549999999963,35.487240000000043,19.468699999997625],[-88.039339999999982,35.487430000000074,19.489900000000489],[-88.038929999999937,35.488020000000063,19.543999999994412],[-88.038799999999981,35.488140000000044,19.557300000000396],[-88.037819999999954,35.488460000000032,19.634799999999814],[-88.037619999999947,35.488590000000045,19.652700000006007]]],\"spatialReference\":{\"wkid\":4326,\"latestWkid\":4326}}"}, {"text": "Finish at Smith Gravel Pit Rd, on the left", "length": 0, "time": 0, "geometry": null}]}



0 Kudos