Skip to content

Directions API

POST Alternate Routes

The Alternate Routes function provides an easy way to request multiple potential routes between two locations. This does not work for multi-point routes, only for routes between a single origin and a destination.

A returned result will contain the main route, along with additional potential routes that could be used.

note

Additional routes will only be returned if the maxRoutes parameter is set to 2 or above. By default, the service does not return an alternate route.

Resource URL

https://www.mapquestapi.com/directions/v2/alternateroutes

Resource Information

Response FormatsJSON, XML
AuthenticationYes (Requires Key)
Rate LimitedYes

Request Parameters

Request ParameterDescriptionRequired
key
String
The API Key, which is needed to make requests to MapQuest services.Yes
inFormatSpecifies the format of the request body. Must be one of the following, if supplied:
  • json
  • xml
Default: json
No
ambiguities
String
Use this parameter to set the strategy for resolving ambiguous location names.
  • ignore - the Routing Service will simply use the first location found for an address.
  • check - the Routing Service will return a full list of the possible location matches in the collections attribute of the response.
Default: ignore
No
outFormatSpecifies the format of the response. Must be one of the following, if supplied:
  • json
  • xml
Default: json
No
callbackA JavaScript function name. The JSON-formatted response will be wrapped in a call to the supplied callback function name to provide JSONP functionality. This functionality might be needed to do cross-site scripting. See the Wikipedia.org entry for JSON for more details.No

Body Parameters

Alternate Routes exposes two additional parameters beyond the regular Route function – maxRoutes and timeOverage.

ParameterDescriptionRequired
locationsA set of at least 2 locations specifying the route origin and destination. Refer to the Locations documentation on how to properly form locations in all formats.Yes

Body Parameter Options

ParameterDescriptionRequired
maxRoutesThe maximum number of routes to return.

Note: The maximum value of maxRoutes is not strictly defined, but will be limited by the number of alternate routes MapQuest attempts to find.

Default: 1 (the original route, no alternates)
No
timeOverageThe percentage by which the expected drive time of an alternate is allowed to exceed the expected drive time of the original route. Alternate routes which exceed the allowed timeOverage will not be returned.

Note: Certain alternate routes (such as those which try to avoid toll roads if tolls are present in the original route) will increase the timeOverage value to allow more inclusive results.

Default: 25
No

Please refer to the normal Route documentation for the full list of acceptable Advanced Parameters.

Response

Alternate Route Response Fields

Response FieldDescription
nameA unique name for the route. The name will be determined by the MapQuest Platform Services server, but will most often be a road which is unique to the alternate route.
alternateRoutesAn array of route response objects. Each route will be a full route response and will be listed in order from fastest to slowest, as seen by the time parameter.

Route Response Fields

Response FieldDescription
bestFitIf a mapState is set, the directions service will compute and return new scale, zoom level, and center values that "best fit" the route shape. The best fit response will contain the original mapState height, width and scale as well as a new scale, new center and new level/zoom. It will use original mapState to calculate the new scale, new center and new level/zoom.
hasTollRoadA route attribute flag that is set per route and per leg. Per route, it returns true if at least one leg contains a Toll Road attribute, otherwise it returns false. Per leg, it returns true if at least one maneuver contains a Toll Road attribute, otherwise it returns false.
hasFerryA route attribute flag that is set per route and per leg. Per route, it returns true if at least one leg contains a Ferry attribute, otherwise it returns false. Per leg, it returns true if at least one maneuver contains a Ferry attribute, otherwise it returns false.
hasHighwayA route attribute flag that is set per route and per leg. Per route, it returns true if at least one leg contains a Limited Access/Highway attribute, otherwise it returns false. Per leg, it returns true if at least one maneuver contains a Limited Access/Highway attribute, otherwise it returns false.
hasSeasonalClosureA route attribute flag that is set per route and per leg. Per route, it returns true if at least one leg contains a Seasonal Closure attribute, otherwise it returns false. Per leg, it returns true if at least one maneuver contains a Seasonal Closure attribute, otherwise it returns false.
hasUnpavedA route attribute flag that is set per route and per leg. Per route, it returns true if at least one leg contains an Unpaved attribute, otherwise it returns false. Per leg, it returns true if at least one maneuver contains an Unpaved attribute, otherwise it returns false.
hasCountryCrossA route attribute flag that is set per route and per leg. Per route, it returns true if at least one leg contains a Country Crossing attribute, otherwise it returns false. Per leg, it returns true if at least one maneuver contains a Country Crossing attribute, otherwise it returns false.
boundingBoxReturns lat/lng bounding rectangle of all points in the latlng collection; Returns the best-fit for route shape.
  • ul - a lat/lng representing the upper-left lat/lng
  • lr - a lat/lng representing the lower-right lat/lng
timeReturns the calculated elapsed time in seconds for the route.
realTimeReturns the estimated route time in seconds over the route path using current traffic conditions and speeds (where available) along with historical traffic conditions. On longer routes, real-time conditions are only applied to the beginning of the route and historical conditions are used afterwards. The realTime estimate can produce a shorter time than the standard route time when traffic conditions reflect higher speeds than the speed limit. Also, real-time speeds are not available on all roads and as such may not always reflect true conditions. The realTime estimate is most useful on short routes where current conditions produce a higher percentage impact to the total route time.

If any road along the route path is currently closed, the time will be greater than 10000000 (an absurdly long time for a route).
formattedTimeReturns the calculated elapsed time as formatted text in HH:MM:SS format.
distanceReturns the calculated distance of the route.
fuelUsedThe estimated amount of fuel used during the route.
legsA collection of leg objects, one for each "leg" of the route.
legDescribes one "leg" of a route. It contains the maneuvers describing how to get from one location to the next location.

Each leg will contain a variety of information, including index, time, distance, and formattedTime.
Collapsed Narrative ParametersThe origin parameters are used if the user is familiar with the area and wants to collapse/hide the first few steps of the Route Narrative. The destination parameters are used if the user is familiar with the area and wants to collapse/hide the last few steps of the Route Narrative. Please note that this is currently only in the json response, not xml. An example of this is displayed on www.mapquest.com. See/Click the "I know the area, hide the first few steps" or "I know the area, hide the last few steps".
  • origIndex - The origin index is the index of the first non-collapsed maneuver.
  • origNarrative - The rephrased origin narrative string for the first non-collapsed maneuver.
  • destIndex - The destination index is the index of the last non-collapsed maneuver.
  • destNarrative - The rephrased destination narrative string for the destination maneuver.
maneuversA collection of Maneuver objects.
maneuverDescribes one step in a route narrative. Contains narrative, street names, m_shape, linkIds, route type, turnType, m_distance, m_time, direction, attributes, signs. See descriptions below.
signsReturns text name, extra text, type (road shield), and direction present for a particular maneuver. Also returns the URLs for the sign images.
mapUrlReturns a URL to a static map of this maneuver.
narrativeReturns textual driving directions for a particular maneuver.
maneuverNotesA collection of maneuverNote objects, one for each maneuver.

Note: In order to view the proper maneuver note styles, the narrativeType needs to be set to microformat. Microformat uses HTML span tags with class attributes to allow parts of the narrative to be easily styled via CSS. Read more.
ruleIdA unique ID that is assigned to a particular maneuver note. This rule ID is used to determine the order that the maneuver notes will be displayed in the narrative. When enhancedNarrative=true, the possible return values are:
  • 1 - Previous Intersection
  • 2,3 - Place holders for future notes
  • 4 - Next Intersection/Gone Too Far
  • 5 - Timed Restrictions
When enhancedNarrative=false, the possible return values are:
  • Timed Restrictions = 1
manNoteReturns the maneuver note for a particular maneuver. Maneuver notes can exist for Timed Turn Restrictions, Timed Access Roads, HOV Roads, Seasonal Closures, and Timed Direction of Travel. Please Note: When the enhancedNarrative flag is set to true, additional maneuver notes may be displayed (see Route Option: enhancedNarrative).
manNoteTypeUsed to specify the type of maneuver note. Possible return values are:
  • 24 - Previous Intersection
  • 25 - Next Intersection
  • 26 - Gone Too Far End
  • 10-14 - Timed Restrictions
directionReturns the direction associated to a particular maneuver. Possible return values are:
  • 0 - none
  • 1 - north
  • 2- northwest
  • 3 - northeast
  • 4 - south
  • 5 - southeast
  • 6 - southwest
  • 7 - west
  • 8 - east
streetsReturns the collection of street names this maneuver applies to.
attributesReturns the attributes associated to a particular maneuver. Possible return values are:
  • 0 - none
  • 1 - portions toll
  • 2 - portions unpaved
  • 4 - possible seasonal road closure
  • 8 - gate
  • 16 - ferry
  • 32 - avoid ID
  • 64 - country crossing
  • 128 - limited access (highways)
turnTypeReturns the turn type associated to a particular maneuver. Possible return values are:
  • 0 - straight
  • 1- slight right
  • 2- right
  • 3 - sharp right
  • 4 - reverse
  • 5 - sharp left
  • 6 - left
  • 7 - slight left
  • 8 - right u-turn
  • 9 - left u-turn
  • 10 - right merge
  • 11 - left merge
  • 12 - right on ramp
  • 13 - left on ramp
  • 14 - right off ramp
  • 15 - left off ramp
  • 16 - right fork
  • 17 - left fork
  • 18 - straight fork
  • 19-23 - reserved
  • 24 - roundabout enter right
  • 25 - roundabout enter left
  • 26 - roundabout pass right
  • 27 - roundabout pass left
  • 28 - roundabout exit right
  • 29 - roundabout exit left
startPointReturns the 1st shape point latLng for a particular maneuver. This will allow for zoomed street functionality for a maneuver.
locationReturns a collection of locations in the form of an address. See the Specifying locations as JSON/XML section for more detail on the format of a Location object.
sessionIdReturns a unique identifier used to refer to a session. An existing session id will be used if provided, otherwise a new one will be created. The route stored in the session will be automatically updated if the session id is provided. Expires after 30 minutes.
mapStateUsed to get the route shape from a session.
shapeFormatThe shape format options:
  • raw - shape is represented as float pairs
  • cmp - shape is represented as a compressed path string
  • none - No shape will be returned. In this case, the generalize parameter will be ignored.
shapeA collection of latitude/longitude coordinates or shape points for the entire route highlight based on the original mapState and/or the generalize option. Shape is an alternated array of lat/lngs. Evens are latitudes and odds are longitudes.

Also included will be:
  • legIndexes - an array of the starting index of each leg
  • maneuverIndexes - an array of the starting index for each maneuver
Each leg and maneuver object in the Route response has an index attribute which corresponds to the entry in the legIndexes/maneuverIndexes array.
legIndexesReturns an array of the shape point index for each specific route segment. The shape point index of the end of the segment is legIndex-1 of the next legIndex. Note that there is always one extra legIndex (the number of legIndexes = number of legs + 1) to account for the last shape point of the final segment.
maneuverIndexesReturns an array of the starting index for each maneuver.
shapePointsShape points for the route (clipped and generalized) will be returned if mapState is given. Shape points is an alternated array of lat/lngs. Evens are latitudes and odds are longitudes. The index of a specific shape point is i/2.
optionsReturns route options.
avoidsAttribute flags of roads to try to avoid. The available attribute flags depend on the data set. This does not guarantee roads with these attributes will be avoided if alternate route paths are too lengthy or not possible or roads that contain these attributes are very short.
mustAvoidLinkIdsReturns link Ids of roads that will be absolutely avoided. May cause some routes to fail.
tryAvoidLinkIdsReturns link Ids of roads that we will try to avoid during route calculation. Does not guarantee these roads will be avoided if alternate route paths are too lengthy or not possible.
routeTypeReturns the route type.
localeReturns the locale.
unitSpecifies the type of units to use when calculating distance.
infoThis field contains information about the response.

The statuscode subfield is an integer return value. See the Status Codes page for more details on our status codes and error messages.

The messages subfield is an array of error messages which describe the status.
transportModeThis is a string indicating the mode of transportation used for the maneuver. Values include:
  • AUTO
  • WALKING
  • BICYCLE
filterZoneFactorThis is returned in the response as part of the options and represents an internal route options used in alternate routes. It cannot be set as an input by the application but can be used to differentiate 2 alternate route results.

See the Status Codes page for more details on our status codes and error messages.

Example Request

POST https://www.mapquestapi.com/directions/v2/alternateroutes?key=KEY

Example Request Body

JSON
{
  "locations": [
      "Denver, CO",
      "Golden, CO"
  ],
  "maxRoutes": 2,
  "timeOverage": 100
}
XML
<route>
    <locations>
        <location>Denver, CO</location>
        <location>Golden, CO</location>
    </locations>
    <maxRoutes>2</maxRoutes>
    <timeOverage>100</timeOverage>
</route>

Example Response

JSON
{
  "route": {
    "alternateRoutes": [
      {
        "route": {
          "hasBridge": true,
          "hasTunnel": false,
          "timeOverage": 2,
          "hasHighway": true,
          "hasUnpaved": false,
          "realTime": 1534,
          "boundingBox": {
            "ul": {
              "lng": -105.226051,
              "lat": 39.777862
            },
            "lr": {
              "lng": -104.982322,
              "lat": 39.738452
            }
          },
          "time": 1470,
          "distance": 17.781,
          "locations": [
            {
              "latLng": {
                "lng": -104.984853,
                "lat": 39.738453
              },
              "adminArea4": "Denver County",
              "adminArea5Type": "City",
              "adminArea4Type": "County",
              "adminArea5": "Denver",
              "street": "",
              "adminArea1": "US",
              "adminArea3": "CO",
              "type": "s",
              "displayLatLng": {
                "lng": -104.984855,
                "lat": 39.738452
              },
              "linkId": 3474069,
              "postalCode": "",
              "sideOfStreet": "N",
              "dragPoint": false,
              "adminArea1Type": "Country",
              "geocodeQuality": "CITY",
              "geocodeQualityCode": "A5XAX",
              "adminArea3Type": "State"
            },
            {
              "latLng": {
                "lng": -105.216019,
                "lat": 39.749672
              },
              "adminArea4": "Jefferson County",
              "adminArea5Type": "City",
              "adminArea4Type": "County",
              "adminArea5": "Golden",
              "street": "",
              "adminArea1": "US",
              "adminArea3": "CO",
              "type": "s",
              "displayLatLng": {
                "lng": -105.216018,
                "lat": 39.749671
              },
              "linkId": 3244207,
              "postalCode": "",
              "sideOfStreet": "N",
              "dragPoint": false,
              "adminArea1Type": "Country",
              "geocodeQuality": "CITY",
              "geocodeQualityCode": "A5XAX",
              "adminArea3Type": "State"
            }
          ],
          "hasSeasonalClosure": false,
          "name": "I-70 W",
          "realTimeAlternatePercentSavingsThreshhold": 5,
          "hasCountryCross": false,
          "routeError": {
            "message": "",
            "errorCode": -400
          },
          "options": {
            "mustAvoidLinkIds": [
            ],
            "drivingStyle": 2,
            "countryBoundaryDisplay": true,
            "generalize": -1,
            "narrativeType": "text",
            "locale": "en_US",
            "avoidTimedConditions": false,
            "destinationManeuverDisplay": true,
            "enhancedNarrative": false,
            "filterZoneFactor": -1,
            "timeType": 0,
            "maxWalkingDistance": -1,
            "routeType": "FASTEST",
            "transferPenalty": -1,
            "walkingSpeed": -1,
            "stateBoundaryDisplay": true,
            "maxLinkId": 50,
            "arteryWeights": [
            ],
            "tryAvoidLinkIds": [
              3831585,
              3831588,
              3831685,
              3831691,
              3649235,
              3831695,
              3831702,
              3831708,
              3831713,
              3831716,
              3831719,
              3831722,
              3831876,
              3831878,
              3831881,
              3549015,
              3831884,
              3776934,
              3831886,
              3831889,
              3831892,
              3567493,
              3831895,
              3831898,
              3832041,
              3832044,
              3832047
            ],
            "unit": "M",
            "routeNumber": 6,
            "doReverseGeocode": true,
            "shapeFormat": "raw",
            "maneuverPenalty": -1,
            "useTraffic": false,
            "returnLinkDirections": false,
            "avoidTripIds": [
            ],
            "manmaps": "true",
            "highwayEfficiency": 22,
            "sideOfStreetDisplay": true,
            "cyclingRoadFactor": 1,
            "urbanAvoidFactor": -1
          },
          "bestFit": {
            "scale": 106189,
            "height": 1024,
            "newScale": 23238,
            "newCenter": {
              "lng": -105.063845,
              "lat": 39.746785
            },
            "width": 768,
            "margin": 0,
            "newLevel": 14
          },
          "hasTollRoad": false,
          "computedWaypoints": [
          ],
          "fuelUsed": 1.02,
          "shape": {
            "maneuverIndexes": [
              0,
              2,
              4,
              6,
              8,
              10,
              12,
              15,
              39,
              49,
              51,
              52
            ],
            "shapePoints": [
              39.738452,
              -104.984855,
              39.738452,
              -104.982322,
              39.738452,
              -104.982322,
              39.740047,
              -104.982337,
              39.740047,
              -104.982337,
              39.740139,
              -104.986114,
              39.740139,
              -104.986114,
              39.747966,
              -104.986099,
              39.747966,
              -104.986099,
              39.748939,
              -104.98738,
              39.748939,
              -104.98738,
              39.754524,
              -104.987388,
              39.754524,
              -104.987388,
              39.760353,
              -104.994461,
              39.766826,
              -104.994834,
              39.766826,
              -104.994834,
              39.76733,
              -104.992927,
              39.772129,
              -104.989784,
              39.7807,
              -104.988189,
              39.781425,
              -104.989395,
              39.781501,
              -104.993782,
              39.783615,
              -105.002326,
              39.783267,
              -105.006698,
              39.783733,
              -105.019996,
              39.784351,
              -105.024551,
              39.783432,
              -105.032981,
              39.783596,
              -105.043449,
              39.785129,
              -105.048789,
              39.783485,
              -105.054321,
              39.783561,
              -105.066688,
              39.784347,
              -105.069946,
              39.7868,
              -105.073486,
              39.787265,
              -105.07566,
              39.783855,
              -105.091567,
              39.784317,
              -105.108131,
              39.784042,
              -105.124992,
              39.7821,
              -105.132003,
              39.778896,
              -105.140548,
              39.777862,
              -105.142059,
              39.777862,
              -105.142059,
              39.776073,
              -105.143806,
              39.775421,
              -105.145378,
              39.774906,
              -105.159736,
              39.773773,
              -105.169128,
              39.771717,
              -105.184387,
              39.76947,
              -105.192085,
              39.76939,
              -105.203712,
              39.761863,
              -105.219764,
              39.761169,
              -105.224143,
              39.761169,
              -105.224143,
              39.76054,
              -105.226051,
              39.76054,
              -105.226051,
              39.749671,
              -105.216018
            ],
            "legIndexes": [
              0,
              53
            ]
          },
          "locationSequence": [
            0,
            1
          ],
          "sessionId": "5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
          "realTimeAlternateTimeSavingsThreshhold": 120,
          "legs": [
            {
              "hasTollRoad": false,
              "index": 1,
              "hasBridge": true,
              "hasTunnel": false,
              "roadGradeStrategy": [
                [
                ]
              ],
              "hasHighway": true,
              "hasUnpaved": false,
              "distance": 17.781,
              "time": 1470,
              "origIndex": 7,
              "hasSeasonalClosure": false,
              "origNarrative": "Go west on I-70 W.",
              "hasCountryCross": false,
              "formattedTime": "00:24:30",
              "destNarrative": "Proceed to GOLDEN, CO.",
              "destIndex": 9,
              "maneuvers": [
                {
                  "signs": [
                  ],
                  "index": 0,
                  "maneuverNotes": [
                  ],
                  "direction": 8,
                  "narrative": "Start out going east on E 14th Ave toward Grant St.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/icon-dirs-start_sm.gif",
                  "distance": 0.135,
                  "time": 23,
                  "linkIds": [
                    3474069,
                    4273339,
                    4273340,
                    3472370,
                    5574336
                  ],
                  "streets": [
                    "E 14th Ave"
                  ],
                  "attributes": 0,
                  "transportMode": "AUTO",
                  "formattedTime": "00:00:23",
                  "directionName": "East",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-1,39.738451999999995,-104.984855,0,0|purple-2,39.738451999999995,-104.982322,0,0|&center=39.738451999999995,-104.9835885&zoom=13&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -104.984855,
                    "lat": 39.738452
                  },
                  "turnType": 0
                },
                {
                  "signs": [
                  ],
                  "index": 1,
                  "maneuverNotes": [
                  ],
                  "direction": 1,
                  "narrative": "Turn left onto Logan St.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_left_sm.gif",
                  "distance": 0.11,
                  "time": 25,
                  "linkIds": [
                    3124511,
                    3385563
                  ],
                  "streets": [
                    "Logan St"
                  ],
                  "attributes": 0,
                  "transportMode": "AUTO",
                  "formattedTime": "00:00:25",
                  "directionName": "North",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-2,39.738451999999995,-104.982322,0,0|purple-3,39.740047,-104.982337,0,0|&center=39.7392495,-104.98232949999999&zoom=12&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -104.982322,
                    "lat": 39.738452
                  },
                  "turnType": 6
                },
                {
                  "signs": [
                    {
                      "text": "70",
                      "extraText": "BUS",
                      "direction": 7,
                      "type": 5,
                      "url": "http://icons.mqcdn.com/icons/rs5.png?n=70&d=WEST&v=BUS"
                    },
                    {
                      "text": "40",
                      "extraText": "",
                      "direction": 7,
                      "type": 2,
                      "url": "http://icons.mqcdn.com/icons/rs2.png?n=40&d=WEST"
                    },
                    {
                      "text": "287",
                      "extraText": "",
                      "direction": 1,
                      "type": 2,
                      "url": "http://icons.mqcdn.com/icons/rs2.png?n=287&d=NORTH"
                    }
                  ],
                  "index": 2,
                  "maneuverNotes": [
                  ],
                  "direction": 7,
                  "narrative": "Turn left onto E Colfax Ave/I-70 Bus W/US-40 W/US-287 N.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_left_sm.gif",
                  "distance": 0.202,
                  "time": 33,
                  "linkIds": [
                    4067927,
                    3422730,
                    4084470,
                    4084469,
                    3740127,
                    3740125,
                    3740126,
                    3439202,
                    4084468,
                    4084467,
                    4972685,
                    3703013,
                    3703014,
                    3897188
                  ],
                  "streets": [
                    "E Colfax Ave",
                    "I-70 Bus W",
                    "US-40 W",
                    "US-287 N"
                  ],
                  "attributes": 0,
                  "transportMode": "AUTO",
                  "formattedTime": "00:00:33",
                  "directionName": "West",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-3,39.740047,-104.982337,0,0|purple-4,39.740139,-104.986114,0,0|&center=39.740093,-104.98422550000001&zoom=13&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -104.982337,
                    "lat": 39.740047
                  },
                  "turnType": 6
                },
                {
                  "signs": [
                  ],
                  "index": 3,
                  "maneuverNotes": [
                  ],
                  "direction": 1,
                  "narrative": "Turn right onto Lincoln St.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_right_sm.gif",
                  "distance": 0.54,
                  "time": 103,
                  "linkIds": [
                    3896372,
                    3896371,
                    3896370,
                    3896351,
                    3168263,
                    3896350,
                    3122726,
                    3120972,
                    3896349,
                    3896348,
                    3896347,
                    3125701,
                    3827352,
                    3472605,
                    3896346,
                    3896176,
                    3391707
                  ],
                  "streets": [
                    "Lincoln St"
                  ],
                  "attributes": 0,
                  "transportMode": "AUTO",
                  "formattedTime": "00:01:43",
                  "directionName": "North",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-4,39.740139,-104.986114,0,0|purple-5,39.747966,-104.986099,0,0|&center=39.744052499999995,-104.9861065&zoom=10&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -104.986114,
                    "lat": 39.740139
                  },
                  "turnType": 2
                },
                {
                  "signs": [
                  ],
                  "index": 4,
                  "maneuverNotes": [
                  ],
                  "direction": 2,
                  "narrative": "Turn slight left onto 20th St.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_slight_left_sm.gif",
                  "distance": 0.096,
                  "time": 18,
                  "linkIds": [
                    4488577,
                    4153799,
                    4153797,
                    3909945,
                    4469648,
                    4561342,
                    4384772
                  ],
                  "streets": [
                    "20th St"
                  ],
                  "attributes": 0,
                  "transportMode": "AUTO",
                  "formattedTime": "00:00:18",
                  "directionName": "Northwest",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-5,39.747966,-104.986099,0,0|purple-6,39.748939,-104.98738,0,0|&center=39.7484525,-104.9867395&zoom=13&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -104.986099,
                    "lat": 39.747966
                  },
                  "turnType": 7
                },
                {
                  "signs": [
                  ],
                  "index": 5,
                  "maneuverNotes": [
                  ],
                  "direction": 1,
                  "narrative": "Turn slight right onto Broadway.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_slight_right_sm.gif",
                  "distance": 0.385,
                  "time": 73,
                  "linkIds": [
                    3824494,
                    3189806,
                    3394854,
                    3824495,
                    3824496,
                    3824497,
                    3824498,
                    3399132,
                    3522664,
                    3824499,
                    3825489,
                    3825490,
                    3825491,
                    3825492,
                    3825493,
                    3575093,
                    3494294,
                    3419506,
                    3494295,
                    3825494,
                    3830074
                  ],
                  "streets": [
                    "Broadway"
                  ],
                  "attributes": 0,
                  "transportMode": "AUTO",
                  "formattedTime": "00:01:13",
                  "directionName": "North",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-6,39.748939,-104.98738,0,0|purple-7,39.754523999999996,-104.987388,0,0|&center=39.7517315,-104.98738399999999&zoom=11&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -104.98738,
                    "lat": 39.748939
                  },
                  "turnType": 1
                },
                {
                  "signs": [
                  ],
                  "index": 6,
                  "maneuverNotes": [
                  ],
                  "direction": 1,
                  "narrative": "Turn slight left onto Park Ave W.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_slight_left_sm.gif",
                  "distance": 1.002,
                  "time": 136,
                  "linkIds": [
                    5008043,
                    5008042,
                    3889701,
                    3889702,
                    4247194,
                    4611491,
                    3592779,
                    3554788,
                    5008041,
                    5008040,
                    3484388,
                    4403578,
                    5008039,
                    3983195,
                    3576025,
                    3576023,
                    3576029,
                    3576021,
                    3576022,
                    3576026,
                    3576027,
                    3576024,
                    4244326,
                    4040148,
                    4040147,
                    4040151,
                    4040155,
                    4040158,
                    4205749,
                    4205867,
                    4205865,
                    4205863,
                    4205862,
                    3633495,
                    3385406,
                    3868173,
                    3185934,
                    3337820
                  ],
                  "streets": [
                    "Park Ave W"
                  ],
                  "attributes": 1024,
                  "transportMode": "AUTO",
                  "formattedTime": "00:02:16",
                  "directionName": "North",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-7,39.754523999999996,-104.987388,0,0|purple-8,39.766825999999995,-104.994834,0,0|&center=39.76067499999999,-104.99111099999999&zoom=9&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -104.987388,
                    "lat": 39.754524
                  },
                  "turnType": 7
                },
                {
                  "signs": [
                    {
                      "text": "70",
                      "extraText": "",
                      "direction": 7,
                      "type": 1,
                      "url": "http://icons.mqcdn.com/icons/rs1.png?n=70&d=WEST"
                    }
                  ],
                  "index": 7,
                  "maneuverNotes": [
                  ],
                  "direction": 7,
                  "narrative": "Merge onto I-70 W toward Grand Jct.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_merge_right_sm.gif",
                  "distance": 9.618,
                  "time": 597,
                  "linkIds": [
                    4236646,
                    4316867,
                    4746874,
                    4560795,
                    5161787,
                    5161791,
                    5161792,
                    5161788,
                    4452091,
                    4858924,
                    4858923,
                    3641533,
                    3552716,
                    4283548,
                    3914906,
                    4283550,
                    4909639,
                    3666323,
                    4017670,
                    4017666,
                    4344237,
                    4344233,
                    4811560,
                    4909643,
                    3981380,
                    3980851,
                    4652155,
                    4909644,
                    4909647,
                    4909649,
                    4909694,
                    4909696,
                    4909699,
                    4909702,
                    4054223,
                    4909705,
                    4909707,
                    4067357,
                    4808573,
                    4909713,
                    4909714,
                    4912571,
                    4938406,
                    4498243,
                    4912576,
                    4912579,
                    4772189,
                    3647754,
                    3647760,
                    3647757
                  ],
                  "streets": [
                    "I-70 W"
                  ],
                  "attributes": 1152,
                  "transportMode": "AUTO",
                  "formattedTime": "00:09:57",
                  "directionName": "West",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-8,39.766825999999995,-104.994834,0,0|purple-9,39.777862,-105.14205899999999,0,0|&center=39.772344,-105.0684465&zoom=7&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -104.994834,
                    "lat": 39.766826
                  },
                  "turnType": 10
                },
                {
                  "signs": [
                    {
                      "text": "58",
                      "extraText": "",
                      "direction": 7,
                      "type": 505,
                      "url": "http://icons.mqcdn.com/icons/rs505.png?n=58&d=WEST"
                    },
                    {
                      "text": "265",
                      "extraText": "",
                      "direction": 0,
                      "type": 1001,
                      "url": "http://icons.mqcdn.com/icons/rs1001.png?n=265&d=RIGHT"
                    }
                  ],
                  "index": 8,
                  "maneuverNotes": [
                  ],
                  "direction": 7,
                  "narrative": "Merge onto CO-58 W via EXIT 265 toward Golden Central City.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_merge_right_sm.gif",
                  "distance": 4.654,
                  "time": 277,
                  "linkIds": [
                    4374327,
                    4374328,
                    4374329,
                    4374330,
                    4374331,
                    4374332,
                    4374333,
                    4374334,
                    4374373,
                    4207452,
                    4374374,
                    4374375,
                    3848341,
                    4234575,
                    4374376,
                    4374377,
                    3997848,
                    4081727,
                    4081726,
                    4081720,
                    4081717,
                    4081718,
                    4081719,
                    4081722,
                    4081721,
                    3589604,
                    3589607,
                    3589605,
                    3589613,
                    3589603,
                    3589601,
                    3589682,
                    4374378,
                    4374379,
                    3925548,
                    4374380,
                    4374381,
                    4374382,
                    4374383,
                    4165547,
                    4009664,
                    4009663,
                    3553049,
                    3553139,
                    3553046,
                    3553043,
                    3553044,
                    3553045
                  ],
                  "streets": [
                    "CO-58 W"
                  ],
                  "attributes": 1152,
                  "transportMode": "AUTO",
                  "formattedTime": "00:04:37",
                  "directionName": "West",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-9,39.777862,-105.14205899999999,0,0|purple-10,39.761168999999995,-105.224143,0,0|&center=39.7695155,-105.183101&zoom=8&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -105.142059,
                    "lat": 39.777862
                  },
                  "turnType": 10
                },
                {
                  "signs": [
                  ],
                  "index": 9,
                  "maneuverNotes": [
                  ],
                  "direction": 6,
                  "narrative": "Take the Washington Avenue exit.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_gr_exitright_sm.gif",
                  "distance": 0.111,
                  "time": 22,
                  "linkIds": [
                    4057046,
                    3634784
                  ],
                  "streets": [
                  ],
                  "attributes": 0,
                  "transportMode": "AUTO",
                  "formattedTime": "00:00:22",
                  "directionName": "Southwest",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-10,39.761168999999995,-105.224143,0,0|purple-11,39.76054,-105.226051,0,0|&center=39.76085449999999,-105.225097&zoom=14&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -105.224143,
                    "lat": 39.761169
                  },
                  "turnType": 14
                },
                {
                  "signs": [
                  ],
                  "index": 10,
                  "maneuverNotes": [
                  ],
                  "direction": 5,
                  "narrative": "Turn left onto Washington Ave.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_left_sm.gif",
                  "distance": 0.928,
                  "time": 163,
                  "linkIds": [
                    4847861,
                    4847862,
                    5260749,
                    4543671,
                    3469557,
                    4728629,
                    4728628,
                    4728627,
                    4014524,
                    4008966,
                    4008965,
                    4055641,
                    4313970,
                    3209994,
                    3300483,
                    3566169,
                    4098147,
                    4313969,
                    3395739,
                    4313968,
                    4313967,
                    4313966,
                    3979944,
                    3245420,
                    3186565,
                    3283863,
                    3167400,
                    3586506,
                    3187396,
                    3244218,
                    3287208,
                    3424554,
                    3239351,
                    4248246,
                    3244207
                  ],
                  "streets": [
                    "Washington Ave"
                  ],
                  "attributes": 1024,
                  "transportMode": "AUTO",
                  "formattedTime": "00:02:43",
                  "directionName": "Southeast",
                  "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-11,39.76054,-105.226051,0,0|purple-12,39.749671,-105.21601799999999,0,0|&center=39.7551055,-105.2210345&zoom=10&rand=1513604667&session=5732a3ff-0224-0003-02b7-39cc-00163eaddb46",
                  "startPoint": {
                    "lng": -105.226051,
                    "lat": 39.76054
                  },
                  "turnType": 6
                },
                {
                  "signs": [
                  ],
                  "index": 11,
                  "maneuverNotes": [
                  ],
                  "direction": 0,
                  "narrative": "Welcome to GOLDEN, CO.",
                  "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/icon-dirs-end_sm.gif",
                  "distance": 0,
                  "time": 0,
                  "linkIds": [
                  ],
                  "streets": [
                  ],
                  "attributes": 0,
                  "transportMode": "AUTO",
                  "formattedTime": "00:00:00",
                  "directionName": "",
                  "startPoint": {
                    "lng": -105.216018,
                    "lat": 39.749671
                  },
                  "turnType": -1
                }
              ],
              "hasFerry": false
            }
          ],
          "formattedTime": "00:24:30",
          "maxRoutes": "2",
          "hasFerry": false
        },
        "info": {
          "debug": "diff=0.2283, AKA 'ABM1'",
          "copyright": {
            "text": "© 2023 MapQuest, Inc.",
            "imageUrl": "https://api.mqcdn.com/res/mqlogo.gif",
            "imageAltText": "© 2023 MapQuest, Inc."
          },
          "statuscode": 0,
          "messages": [
          ]
        }
      }
    ],
    "hasBridge": true,
    "hasTunnel": false,
    "timeOverage": 2,
    "hasHighway": true,
    "hasUnpaved": false,
    "realTime": 1373,
    "boundingBox": {
      "ul": {
        "lng": -105.223335,
        "lat": 39.749671
      },
      "lr": {
        "lng": -104.98484,
        "lat": 39.725383
      }
    },
    "time": 1159,
    "distance": 14.737,
    "locations": [
      {
        "latLng": {
          "lng": -104.984853,
          "lat": 39.738453
        },
        "adminArea4": "Denver County",
        "adminArea5Type": "City",
        "adminArea4Type": "County",
        "adminArea5": "Denver",
        "street": "",
        "adminArea1": "US",
        "adminArea3": "CO",
        "type": "s",
        "displayLatLng": {
          "lng": -104.984855,
          "lat": 39.738452
        },
        "linkId": 3474069,
        "postalCode": "",
        "sideOfStreet": "N",
        "dragPoint": false,
        "adminArea1Type": "Country",
        "geocodeQuality": "CITY",
        "geocodeQualityCode": "A5XAX",
        "adminArea3Type": "State"
      },
      {
        "latLng": {
          "lng": -105.216019,
          "lat": 39.749672
        },
        "adminArea4": "Jefferson County",
        "adminArea5Type": "City",
        "adminArea4Type": "County",
        "adminArea5": "Golden",
        "street": "",
        "adminArea1": "US",
        "adminArea3": "CO",
        "type": "s",
        "displayLatLng": {
          "lng": -105.216018,
          "lat": 39.749671
        },
        "linkId": 3244207,
        "postalCode": "",
        "sideOfStreet": "N",
        "dragPoint": false,
        "adminArea1Type": "Country",
        "geocodeQuality": "CITY",
        "geocodeQualityCode": "A5XAX",
        "adminArea3Type": "State"
      }
    ],
    "hasSeasonalClosure": false,
    "mapState": {
      "center": {
        "lng": -105.104114,
        "lat": 39.737393
      },
      "scale": 106189,
      "height": 1024,
      "width": 768
    },
    "name": "W 6th Avenue Fwy W",
    "realTimeAlternatePercentSavingsThreshhold": 5,
    "hasCountryCross": false,
    "routeError": {
      "message": "",
      "errorCode": -400
    },
    "options": {
      "mustAvoidLinkIds": [
      ],
      "drivingStyle": 2,
      "countryBoundaryDisplay": true,
      "generalize": -1,
      "narrativeType": "text",
      "locale": "en_US",
      "avoidTimedConditions": false,
      "destinationManeuverDisplay": true,
      "enhancedNarrative": false,
      "filterZoneFactor": -1,
      "timeType": 0,
      "maxWalkingDistance": -1,
      "routeType": "FASTEST",
      "transferPenalty": -1,
      "walkingSpeed": -1,
      "stateBoundaryDisplay": true,
      "maxLinkId": 50,
      "arteryWeights": [
      ],
      "tryAvoidLinkIds": [
      ],
      "unit": "M",
      "routeNumber": 0,
      "doReverseGeocode": true,
      "shapeFormat": "raw",
      "maneuverPenalty": -1,
      "useTraffic": false,
      "returnLinkDirections": false,
      "avoidTripIds": [
      ],
      "manmaps": "true",
      "highwayEfficiency": 22,
      "sideOfStreetDisplay": true,
      "cyclingRoadFactor": 1,
      "urbanAvoidFactor": -1
    },
    "bestFit": {
      "scale": 106189,
      "height": 1024,
      "newScale": 23238,
      "newCenter": {
        "lng": -105.063845,
        "lat": 39.746785
      },
      "width": 768,
      "margin": 0,
      "newLevel": 14
    },
    "hasTollRoad": false,
    "computedWaypoints": [
    ],
    "fuelUsed": 0.74,
    "shape": {
      "maneuverIndexes": [
        0,
        2,
        4,
        6,
        11,
        18,
        20
      ],
      "shapePoints": [
        39.738452,
        -104.984855,
        39.736877,
        -104.98484,
        39.736877,
        -104.98484,
        39.736881,
        -105.000137,
        39.736881,
        -105.000137,
        39.726455,
        -105.000183,
        39.726455,
        -105.000183,
        39.725769,
        -105.000808,
        39.725307,
        -105.018676,
        39.725803,
        -105.053161,
        39.725383,
        -105.177268,
        39.725383,
        -105.177268,
        39.725116,
        -105.19844,
        39.725704,
        -105.201126,
        39.728862,
        -105.204841,
        39.730148,
        -105.209274,
        39.731399,
        -105.211334,
        39.74517,
        -105.223335,
        39.74517,
        -105.223335,
        39.745735,
        -105.22319,
        39.749671,
        -105.216018
      ],
      "legIndexes": [
        0,
        21
      ]
    },
    "locationSequence": [
      0,
      1
    ],
    "sessionId": "5732a3ff-01eb-0002-02b7-1d95-00163eb7a452",
    "realTimeAlternateTimeSavingsThreshhold": 120,
    "legs": [
      {
        "hasTollRoad": false,
        "index": 0,
        "hasBridge": true,
        "hasTunnel": false,
        "roadGradeStrategy": [
          [
          ]
        ],
        "hasHighway": true,
        "hasUnpaved": false,
        "distance": 14.737,
        "time": 1159,
        "origIndex": 1,
        "hasSeasonalClosure": false,
        "origNarrative": "Go west on E 13th Ave.",
        "hasCountryCross": false,
        "formattedTime": "00:19:19",
        "destNarrative": "Proceed to GOLDEN, CO.",
        "destIndex": 4,
        "maneuvers": [
          {
            "signs": [
            ],
            "index": 0,
            "maneuverNotes": [
            ],
            "direction": 4,
            "narrative": "Start out going south on Sherman St toward E 13th Ave.",
            "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/icon-dirs-start_sm.gif",
            "distance": 0.109,
            "time": 33,
            "linkIds": [
              3122185,
              3121140,
              3399125,
              3172661
            ],
            "streets": [
              "Sherman St"
            ],
            "attributes": 0,
            "transportMode": "AUTO",
            "formattedTime": "00:00:33",
            "directionName": "South",
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-1,39.738451999999995,-104.984855,0,0|purple-2,39.736877,-104.98483999999999,0,0|&center=39.737664499999994,-104.9848475&zoom=13&rand=1513989416&session=5732a3ff-01eb-0002-02b7-1d95-00163eb7a452",
            "startPoint": {
              "lng": -104.984855,
              "lat": 39.738452
            },
            "turnType": 0
          },
          {
            "signs": [
            ],
            "index": 1,
            "maneuverNotes": [
            ],
            "direction": 7,
            "narrative": "Turn right onto E 13th Ave.",
            "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_right_sm.gif",
            "distance": 0.815,
            "time": 124,
            "linkIds": [
              3974385,
              3737392,
              3666318,
              4916071,
              4711991,
              3795927,
              3154770,
              3676468,
              3631067,
              3187869,
              3228978,
              4978291,
              3636720,
              4698473,
              4480765,
              3687135,
              3661060,
              4992024,
              4941359,
              3988832,
              4941358,
              5326456,
              5161897,
              4346359,
              4841647,
              3291094,
              3931561,
              3472372
            ],
            "streets": [
              "E 13th Ave"
            ],
            "attributes": 1024,
            "transportMode": "AUTO",
            "formattedTime": "00:02:04",
            "directionName": "West",
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-2,39.736877,-104.98483999999999,0,0|purple-3,39.736881,-105.000137,0,0|&center=39.736879,-104.9924885&zoom=10&rand=1513989416&session=5732a3ff-01eb-0002-02b7-1d95-00163eb7a452",
            "startPoint": {
              "lng": -104.98484,
              "lat": 39.736877
            },
            "turnType": 2
          },
          {
            "signs": [
            ],
            "index": 2,
            "maneuverNotes": [
            ],
            "direction": 4,
            "narrative": "Turn left onto Kalamath St.",
            "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_left_sm.gif",
            "distance": 0.719,
            "time": 108,
            "linkIds": [
              3207294,
              3484383,
              3171027,
              3157203,
              4020778,
              4654947,
              3252627,
              3176175,
              4297104,
              3159882,
              3215566,
              3596592,
              3517308,
              3738093,
              3143199
            ],
            "streets": [
              "Kalamath St"
            ],
            "attributes": 0,
            "transportMode": "AUTO",
            "formattedTime": "00:01:48",
            "directionName": "South",
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-3,39.736881,-105.000137,0,0|purple-4,39.726455,-105.00018299999999,0,0|&center=39.731668,-105.00016&zoom=10&rand=1513989416&session=5732a3ff-01eb-0002-02b7-1d95-00163eb7a452",
            "startPoint": {
              "lng": -105.000137,
              "lat": 39.736881
            },
            "turnType": 6
          },
          {
            "signs": [
            ],
            "index": 3,
            "maneuverNotes": [
            ],
            "direction": 7,
            "narrative": "Stay straight to go onto W 6th Avenue Fwy W.",
            "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_straight_sm.gif",
            "distance": 9.468,
            "time": 577,
            "linkIds": [
              3565287,
              3831445,
              3831451,
              3831564,
              3498158,
              3831565,
              3831568,
              3831571,
              3831574,
              3831577,
              3831580,
              3831582,
              3831585,
              3831588,
              3831685,
              3831691,
              3649235,
              3831695,
              3831702,
              3831708,
              3831713,
              3831716,
              3831719,
              3831722,
              3831876,
              3831878,
              3831881,
              3549015,
              3831884,
              3776934,
              3831886,
              3831889,
              3831892,
              3567493,
              3831895,
              3831898,
              3832041,
              3832044,
              3832047,
              3832050,
              3682535,
              3832054,
              3832057,
              3832060,
              3832063,
              3832066,
              3832161,
              3832164,
              3832167,
              3832169
            ],
            "streets": [
              "W 6th Avenue Fwy W"
            ],
            "attributes": 1152,
            "transportMode": "AUTO",
            "formattedTime": "00:09:37",
            "directionName": "West",
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-4,39.726455,-105.00018299999999,0,0|purple-5,39.725383,-105.177268,0,0|&center=39.725919000000005,-105.0887255&zoom=7&rand=1513989416&session=5732a3ff-01eb-0002-02b7-1d95-00163eb7a452",
            "startPoint": {
              "lng": -105.000183,
              "lat": 39.726455
            },
            "turnType": 0
          },
          {
            "signs": [
              {
                "text": "6",
                "extraText": "",
                "direction": 7,
                "type": 2,
                "url": "http://icons.mqcdn.com/icons/rs2.png?n=6&d=WEST"
              }
            ],
            "index": 4,
            "maneuverNotes": [
            ],
            "direction": 7,
            "narrative": "Stay straight to go onto US-6 W.",
            "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_straight_sm.gif",
            "distance": 3.114,
            "time": 245,
            "linkIds": [
              3832170,
              3832171,
              3832172,
              3832173,
              3832174,
              3832176,
              3832177,
              3832178,
              3832179,
              3832180,
              3832182,
              3832183,
              3832184,
              3324655,
              3832185,
              3804295,
              3832302,
              3832303,
              3832304,
              3832305,
              3832307,
              3832308,
              3832309,
              3832310,
              3832311,
              3832313,
              3832314,
              3832315,
              3832316,
              3832317,
              3832319,
              3832320,
              3832321,
              3832322,
              3491635,
              3491648,
              3491637,
              3832323,
              3832440,
              3784275,
              3832442,
              3832443,
              3832444,
              3832445,
              3832446,
              3832448,
              3832478,
              3832480,
              3832488,
              3832490
            ],
            "streets": [
              "US-6 W"
            ],
            "attributes": 128,
            "transportMode": "AUTO",
            "formattedTime": "00:04:05",
            "directionName": "West",
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-5,39.725383,-105.177268,0,0|purple-6,39.74517,-105.22333499999999,0,0|&center=39.7352765,-105.2003015&zoom=9&rand=1513989416&session=5732a3ff-01eb-0002-02b7-1d95-00163eb7a452",
            "startPoint": {
              "lng": -105.177268,
              "lat": 39.725383
            },
            "turnType": 0
          },
          {
            "signs": [
            ],
            "index": 5,
            "maneuverNotes": [
            ],
            "direction": 3,
            "narrative": "Turn right onto 19th St.",
            "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/rs_right_sm.gif",
            "distance": 0.512,
            "time": 72,
            "linkIds": [
              5491896,
              5132101,
              4414202,
              4185695,
              4282378,
              4332132,
              3626707,
              4550927,
              3812648,
              3812649,
              5514967,
              3337838,
              3730552,
              3730553,
              3214697,
              3647396,
              4934595
            ],
            "streets": [
              "19th St"
            ],
            "attributes": 0,
            "transportMode": "AUTO",
            "formattedTime": "00:01:12",
            "directionName": "Northeast",
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-6,39.74517,-105.22333499999999,0,0|purple-7,39.749671,-105.21601799999999,0,0|&center=39.747420500000004,-105.21967649999999&zoom=11&rand=1513989416&session=5732a3ff-01eb-0002-02b7-1d95-00163eb7a452",
            "startPoint": {
              "lng": -105.223335,
              "lat": 39.74517
            },
            "turnType": 2
          },
          {
            "signs": [
            ],
            "index": 6,
            "maneuverNotes": [
            ],
            "direction": 0,
            "narrative": "Welcome to GOLDEN, CO.",
            "iconUrl": "https://content.mapquest.com/mqsite/turnsigns/icon-dirs-end_sm.gif",
            "distance": 0,
            "time": 0,
            "linkIds": [
            ],
            "streets": [
            ],
            "attributes": 0,
            "transportMode": "AUTO",
            "formattedTime": "00:00:00",
            "directionName": "",
            "startPoint": {
              "lng": -105.216018,
              "lat": 39.749671
            },
            "turnType": -1
          }
        ],
        "hasFerry": false
      }
    ],
    "formattedTime": "00:19:19",
    "maxRoutes": "2",
    "hasFerry": false
  },
  "info": {
    "debug": "diff=0.0000, AKA 'Distance-biased-AW/FZ=[1.48,1.23,0.95,0.90,0.85]/5.00', AKA 'RTT', AKA 'Default'",
    "copyright": {
      "text": "© 2023 MapQuest, Inc.",
      "imageUrl": "https://api.mqcdn.com/res/mqlogo.gif",
      "imageAltText": "© 2023 MapQuest, Inc."
    },
    "statuscode": 0,
    "messages": [
    ]
  }
}
XML
<?xml version="1.0" encoding="UTF-8"?>
<response>
    <info>
        <statusCode>0</statusCode>
        <messages/>
        <copyright>
            <imageUrl>https://api.mqcdn.com/res/mqlogo.gif</imageUrl>
            <imageAltText>© 2023 MapQuest, Inc.</imageAltText>
            <text>© 2023 MapQuest, Inc.</text>
        </copyright>
    </info>
    <routeError>
        <errorCode>-400</errorCode>
        <message></message>
    </routeError>
    <route>
        <sessionId>5732a4a3-009b-000e-02b7-17bb-00163e8b68c0</sessionId>
        <name>W 6th Avenue Fwy W</name>
        <options>
            <shapeFormat>raw</shapeFormat>
            <generalize>-1.0</generalize>
            <maxLinkId>50</maxLinkId>
            <narrativeType>text</narrativeType>
            <stateBoundaryDisplay>true</stateBoundaryDisplay>
            <countryBoundaryDisplay>true</countryBoundaryDisplay>
            <sideOfStreetDisplay>true</sideOfStreetDisplay>
            <destinationManeuverDisplay>true</destinationManeuverDisplay>
            <avoidTimedConditions>false</avoidTimedConditions>
            <enhancedNarrative>false</enhancedNarrative>
            <returnLinkDirections>false</returnLinkDirections>
            <timeType>0</timeType>
            <routeType>FASTEST</routeType>
            <locale>en_US</locale>
            <unit>M</unit>
            <tryAvoidLinkIds></tryAvoidLinkIds>
            <mustAvoidLinkIds></mustAvoidLinkIds>
            <manmaps>true</manmaps>
            <drivingStyle>2</drivingStyle>
            <highwayEfficiency>22.0</highwayEfficiency>
            <useTraffic>false</useTraffic>
        </options>
        <mapState>
            <center>
                <latLng>
                    <lat>39.737393499999996</lat>
                    <lng>-105.104114</lng>
                </latLng>
            </center>
            <height>1024</height>
            <width>768</width>
            <scale>106189</scale>
        </mapState>
        <boundingBox>
            <ul>
                <lat>39.749671</lat>
                <lng>-105.223335</lng>
            </ul>
            <lr>
                <lat>39.725383</lat>
                <lng>-104.98484</lng>
            </lr>
        </boundingBox>
        <distance>14.737</distance>
        <time>1159</time>
        <realTime>1351</realTime>
        <fuelUsed>0.74</fuelUsed>
        <formattedTime>00:19:19</formattedTime>
        <legs>
            <leg>
                <distance>14.737</distance>
                <time>1159</time>
                <formattedTime>00:19:19</formattedTime>
                <index>0</index>
                <maneuvers>
                    <maneuver>
                        <startPoint>
                            <lat>39.7385</lat>
                            <lng>-104.9849</lng>
                        </startPoint>
                        <maneuverNotes/>
                        <distance>0.109</distance>
                        <time>33</time>
                        <formattedTime>00:00:33</formattedTime>
                        <attributes>0</attributes>
                        <turnType>0</turnType>
                        <direction>4</direction>
                        <narrative>Start out going south on Sherman St toward E 13th Ave.</narrative>
                        <directionName>South</directionName>
                        <index>0</index>
                        <streets>
                            <street>Sherman St</street>
                        </streets>
                        <signs/>
                        <iconUrl>
                            <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_straight_sm.gif]]>
                        </iconUrl>
                        <linkIds>3122185,3121140,3399125,3172661</linkIds>
                        <mapUrl>
                            <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-2,39.738451999999995,-104.984855,0,0|purple-3,39.736877,-104.98483999999999,0,0|&center=39.737664499999994,-104.9848475&zoom=13&rand=-155373120&session=5732a4a3-009b-000e-02b7-17bb-00163e8b68c0]]>
                        </mapUrl>
                    </maneuver>
                    <maneuver>
                        <startPoint>
                            <lat>39.7369</lat>
                            <lng>-104.9848</lng>
                        </startPoint>
                        <maneuverNotes/>
                        <distance>0.815</distance>
                        <time>124</time>
                        <formattedTime>00:02:04</formattedTime>
                        <attributes>1024</attributes>
                        <turnType>2</turnType>
                        <direction>7</direction>
                        <narrative>Turn right onto E 13th Ave.</narrative>
                        <directionName>West</directionName>
                        <index>1</index>
                        <streets>
                            <street>E 13th Ave</street>
                        </streets>
                        <signs/>
                        <iconUrl>
                            <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_right_sm.gif]]>
                        </iconUrl>
                        <linkIds>3974385,3737392,3666318,4916071,4711991,3795927,3154770,3676468,3631067,3187869,3228978,4978291,3636720,4698473,4480765,3687135,3661060,4992024,4941359,3988832,4941358,5326456,5161897,4346359,4841647,3291094,3931561,3472372</linkIds>
                        <mapUrl>
                            <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-3,39.736877,-104.98483999999999,0,0|purple-4,39.736881,-105.000137,0,0|&center=39.736879,-104.9924885&zoom=10&rand=-155373120&session=5732a4a3-009b-000e-02b7-17bb-00163e8b68c0]]>
                        </mapUrl>
                    </maneuver>
                    <maneuver>
                        <startPoint>
                            <lat>39.7369</lat>
                            <lng>-105.0001</lng>
                        </startPoint>
                        <maneuverNotes/>
                        <distance>0.719</distance>
                        <time>108</time>
                        <formattedTime>00:01:48</formattedTime>
                        <attributes>0</attributes>
                        <turnType>6</turnType>
                        <direction>4</direction>
                        <narrative>Turn left onto Kalamath St.</narrative>
                        <directionName>South</directionName>
                        <index>2</index>
                        <streets>
                            <street>Kalamath St</street>
                        </streets>
                        <signs/>
                        <iconUrl>
                            <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_left_sm.gif]]>
                        </iconUrl>
                        <linkIds>3207294,3484383,3171027,3157203,4020778,4654947,3252627,3176175,4297104,3159882,3215566,3596592,3517308,3738093,3143199</linkIds>
                        <mapUrl>
                            <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-4,39.736881,-105.000137,0,0|purple-5,39.726455,-105.00018299999999,0,0|&center=39.731668,-105.00016&zoom=10&rand=-155373120&session=5732a4a3-009b-000e-02b7-17bb-00163e8b68c0]]>
                        </mapUrl>
                    </maneuver>
                    <maneuver>
                        <startPoint>
                            <lat>39.7265</lat>
                            <lng>-105.0002</lng>
                        </startPoint>
                        <maneuverNotes/>
                        <distance>9.468</distance>
                        <time>577</time>
                        <formattedTime>00:09:37</formattedTime>
                        <attributes>1152</attributes>
                        <turnType>0</turnType>
                        <direction>7</direction>
                        <narrative>Stay straight to go onto W 6th Avenue Fwy W.</narrative>
                        <directionName>West</directionName>
                        <index>3</index>
                        <streets>
                            <street>W 6th Avenue Fwy W</street>
                        </streets>
                        <signs/>
                        <iconUrl>
                            <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_straight_sm.gif]]>
                        </iconUrl>
                        <linkIds>3565287,3831445,3831451,3831564,3498158,3831565,3831568,3831571,3831574,3831577,3831580,3831582,3831585,3831588,3831685,3831691,3649235,3831695,3831702,3831708,3831713,3831716,3831719,3831722,3831876,3831878,3831881,3549015,3831884,3776934,3831886,3831889,3831892,3567493,3831895,3831898,3832041,3832044,3832047,3832050,3682535,3832054,3832057,3832060,3832063,3832066,3832161,3832164,3832167,3832169</linkIds>
                        <mapUrl>
                            <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-5,39.726455,-105.00018299999999,0,0|purple-6,39.725383,-105.177268,0,0|&center=39.725919000000005,-105.0887255&zoom=7&rand=-155373120&session=5732a4a3-009b-000e-02b7-17bb-00163e8b68c0]]>
                        </mapUrl>
                    </maneuver>
                    <maneuver>
                        <startPoint>
                            <lat>39.7254</lat>
                            <lng>-105.1773</lng>
                        </startPoint>
                        <maneuverNotes/>
                        <distance>3.114</distance>
                        <time>245</time>
                        <formattedTime>00:04:05</formattedTime>
                        <attributes>128</attributes>
                        <turnType>0</turnType>
                        <direction>7</direction>
                        <narrative>Stay straight to go onto US-6 W.</narrative>
                        <directionName>West</directionName>
                        <index>4</index>
                        <streets>
                            <street>US-6 W</street>
                        </streets>
                        <signs>
                            <sign>
                                <type>2</type>
                                <direction>7</direction>
                                <text>6</text>
                                <extraText></extraText>
                                <url>
                                    <![CDATA[http://icons.mqcdn.com/icons/rs2.png?n=6&d=WEST]]>
                                </url>
                            </sign>
                        </signs>
                        <iconUrl>
                            <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_straight_sm.gif]]>
                        </iconUrl>
                        <linkIds>3832170,3832171,3832172,3832173,3832174,3832176,3832177,3832178,3832179,3832180,3832182,3832183,3832184,3324655,3832185,3804295,3832302,3832303,3832304,3832305,3832307,3832308,3832309,3832310,3832311,3832313,3832314,3832315,3832316,3832317,3832319,3832320,3832321,3832322,3491635,3491648,3491637,3832323,3832440,3784275,3832442,3832443,3832444,3832445,3832446,3832448,3832478,3832480,3832488,3832490</linkIds>
                        <mapUrl>
                            <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-6,39.725383,-105.177268,0,0|purple-7,39.74517,-105.22333499999999,0,0|&center=39.7352765,-105.2003015&zoom=9&rand=-155373120&session=5732a4a3-009b-000e-02b7-17bb-00163e8b68c0]]>
                        </mapUrl>
                    </maneuver>
                    <maneuver>
                        <startPoint>
                            <lat>39.7452</lat>
                            <lng>-105.2233</lng>
                        </startPoint>
                        <maneuverNotes/>
                        <distance>0.512</distance>
                        <time>72</time>
                        <formattedTime>00:01:12</formattedTime>
                        <attributes>0</attributes>
                        <turnType>2</turnType>
                        <direction>3</direction>
                        <narrative>Turn right onto 19th St.</narrative>
                        <directionName>Northeast</directionName>
                        <index>5</index>
                        <streets>
                            <street>19th St</street>
                        </streets>
                        <signs/>
                        <iconUrl>
                            <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_right_sm.gif]]>
                        </iconUrl>
                        <linkIds>5491896,5132101,4414202,4185695,4282378,4332132,3626707,4550927,3812648,3812649,5514967,3337838,3730552,3730553,3214697,3647396,4934595</linkIds>
                        <mapUrl>
                            <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-7,39.74517,-105.22333499999999,0,0|purple-8,39.749671,-105.21601799999999,0,0|&center=39.747420500000004,-105.21967649999999&zoom=11&rand=-155373120&session=5732a4a3-009b-000e-02b7-17bb-00163e8b68c0]]>
                        </mapUrl>
                    </maneuver>
                    <maneuver>
                        <startPoint/>
                        <maneuverNotes/>
                        <distance>0.0</distance>
                        <time>0</time>
                        <formattedTime>00:00:00</formattedTime>
                        <attributes>0</attributes>
                        <turnType>-1</turnType>
                        <direction>0</direction>
                        <narrative>Welcome to GOLDEN, CO.</narrative>
                        <directionName></directionName>
                        <index>6</index>
                        <streets/>
                        <signs/>
                        <linkIds/>
                        <mapUrl>
                            <![CDATA[]]>
                        </mapUrl>
                    </maneuver>
                </maneuvers>
                <hasTollRoad>false</hasTollRoad>
                <hasFerry>false</hasFerry>
                <hasHighway>true</hasHighway>
                <hasSeasonalClosure>false</hasSeasonalClosure>
                <hasUnpaved>false</hasUnpaved>
                <hasCountryCross>false</hasCountryCross>
                <hasBridge>true</hasBridge>
                <hasTunnel>false</hasTunnel>
            </leg>
        </legs>
        <hasTollRoad>false</hasTollRoad>
        <hasFerry>false</hasFerry>
        <hasHighway>true</hasHighway>
        <hasSeasonalClosure>false</hasSeasonalClosure>
        <hasUnpaved>false</hasUnpaved>
        <hasCountryCross>false</hasCountryCross>
        <hasBridge>true</hasBridge>
        <hasTunnel>false</hasTunnel>
        <locations>
            <location>
                <street></street>
                <adminArea5 type="City">Denver</adminArea5>
                <adminArea3 type="State">CO</adminArea3>
                <adminArea4 type="County">Denver County</adminArea4>
                <postalCode></postalCode>
                <adminArea1 type="Country">US</adminArea1>
                <geocodeQuality>CITY</geocodeQuality>
                <geocodeQualityCode>A5XAX</geocodeQualityCode>
                <dragPoint>false</dragPoint>
                <sideOfStreet>N</sideOfStreet>
                <displayLatLng>
                    <latLng>
                        <lat>39.738452</lat>
                        <lng>-104.984855</lng>
                    </latLng>
                </displayLatLng>
                <linkId>3474069</linkId>
                <type>s</type>
                <latLng>
                    <lat>39.738453</lat>
                    <lng>-104.984853</lng>
                </latLng>
            </location>
            <location>
                <street></street>
                <adminArea5 type="City">Golden</adminArea5>
                <adminArea3 type="State">CO</adminArea3>
                <adminArea4 type="County">Jefferson County</adminArea4>
                <postalCode></postalCode>
                <adminArea1 type="Country">US</adminArea1>
                <geocodeQuality>CITY</geocodeQuality>
                <geocodeQualityCode>A5XAX</geocodeQualityCode>
                <dragPoint>false</dragPoint>
                <sideOfStreet>N</sideOfStreet>
                <displayLatLng>
                    <latLng>
                        <lat>39.749671</lat>
                        <lng>-105.216018</lng>
                    </latLng>
                </displayLatLng>
                <linkId>3244207</linkId>
                <type>s</type>
                <latLng>
                    <lat>39.749672</lat>
                    <lng>-105.216019</lng>
                </latLng>
            </location>
        </locations>
        <locationSequence>0,1</locationSequence>
        <computedWaypoints/>
        <alternateRoutes>
            <response>
                <info>
                    <statusCode>0</statusCode>
                    <messages/>
                    <copyright>
                        <imageUrl>https://api.mqcdn.com/res/mqlogo.gif</imageUrl>
                        <imageAltText>© 2023 MapQuest, Inc.</imageAltText>
                        <text>© 2023 MapQuest, Inc.</text>
                    </copyright>
                </info>
                <routeError>
                    <errorCode>-400</errorCode>
                    <message></message>
                </routeError>
                <route>
                    <sessionId>5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3</sessionId>
                    <name>I-70 W</name>
                    <options>
                        <shapeFormat>raw</shapeFormat>
                        <generalize>-1.0</generalize>
                        <maxLinkId>50</maxLinkId>
                        <narrativeType>text</narrativeType>
                        <stateBoundaryDisplay>true</stateBoundaryDisplay>
                        <countryBoundaryDisplay>true</countryBoundaryDisplay>
                        <sideOfStreetDisplay>true</sideOfStreetDisplay>
                        <destinationManeuverDisplay>true</destinationManeuverDisplay>
                        <avoidTimedConditions>false</avoidTimedConditions>
                        <enhancedNarrative>false</enhancedNarrative>
                        <returnLinkDirections>false</returnLinkDirections>
                        <timeType>0</timeType>
                        <routeType>FASTEST</routeType>
                        <locale>en_US</locale>
                        <unit>M</unit>
                        <tryAvoidLinkIds>3831585,3831588,3831685,3831691,3649235,3831695,3831702,3831708,3831713,3831716,3831719,3831722,3831876,3831878,3831881,3549015,3831884,3776934,3831886,3831889,3831892,3567493,3831895,3831898,3832041,3832044,3832047</tryAvoidLinkIds>
                        <mustAvoidLinkIds></mustAvoidLinkIds>
                        <manmaps>true</manmaps>
                        <drivingStyle>2</drivingStyle>
                        <highwayEfficiency>22.0</highwayEfficiency>
                        <useTraffic>false</useTraffic>
                    </options>
                    <boundingBox>
                        <ul>
                            <lat>39.777862</lat>
                            <lng>-105.226051</lng>
                        </ul>
                        <lr>
                            <lat>39.738452</lat>
                            <lng>-104.982322</lng>
                        </lr>
                    </boundingBox>
                    <distance>17.781</distance>
                    <time>1470</time>
                    <realTime>1552</realTime>
                    <fuelUsed>1.02</fuelUsed>
                    <formattedTime>00:24:30</formattedTime>
                    <legs>
                        <leg>
                            <distance>17.781</distance>
                            <time>1470</time>
                            <formattedTime>00:24:30</formattedTime>
                            <index>1</index>
                            <maneuvers>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7385</lat>
                                        <lng>-104.9849</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>0.135</distance>
                                    <time>23</time>
                                    <formattedTime>00:00:23</formattedTime>
                                    <attributes>0</attributes>
                                    <turnType>0</turnType>
                                    <direction>8</direction>
                                    <narrative>Start out going east on E 14th Ave toward Grant St.</narrative>
                                    <directionName>East</directionName>
                                    <index>7</index>
                                    <streets>
                                        <street>E 14th Ave</street>
                                    </streets>
                                    <signs/>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_straight_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>3474069,4273339,4273340,3472370,5574336</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-9,39.738451999999995,-104.984855,0,0|purple-10,39.738451999999995,-104.982322,0,0|&center=39.738451999999995,-104.9835885&zoom=13&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7385</lat>
                                        <lng>-104.9823</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>0.11</distance>
                                    <time>25</time>
                                    <formattedTime>00:00:25</formattedTime>
                                    <attributes>0</attributes>
                                    <turnType>6</turnType>
                                    <direction>1</direction>
                                    <narrative>Turn left onto Logan St.</narrative>
                                    <directionName>North</directionName>
                                    <index>8</index>
                                    <streets>
                                        <street>Logan St</street>
                                    </streets>
                                    <signs/>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_left_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>3124511,3385563</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-10,39.738451999999995,-104.982322,0,0|purple-11,39.740047,-104.982337,0,0|&center=39.7392495,-104.98232949999999&zoom=12&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.74</lat>
                                        <lng>-104.9823</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>0.202</distance>
                                    <time>33</time>
                                    <formattedTime>00:00:33</formattedTime>
                                    <attributes>0</attributes>
                                    <turnType>6</turnType>
                                    <direction>7</direction>
                                    <narrative>Turn left onto E Colfax Ave/I-70 Bus W/US-40 W/US-287 N.</narrative>
                                    <directionName>West</directionName>
                                    <index>9</index>
                                    <streets>
                                        <street>E Colfax Ave</street>
                                        <street>I-70 Bus W</street>
                                        <street>US-40 W</street>
                                        <street>US-287 N</street>
                                    </streets>
                                    <signs>
                                        <sign>
                                            <type>5</type>
                                            <direction>7</direction>
                                            <text>70</text>
                                            <extraText>BUS</extraText>
                                            <url>
                                                <![CDATA[http://icons.mqcdn.com/icons/rs5.png?n=70&d=WEST&v=BUS]]>
                                            </url>
                                        </sign>
                                        <sign>
                                            <type>2</type>
                                            <direction>7</direction>
                                            <text>40</text>
                                            <extraText></extraText>
                                            <url>
                                                <![CDATA[http://icons.mqcdn.com/icons/rs2.png?n=40&d=WEST]]>
                                            </url>
                                        </sign>
                                        <sign>
                                            <type>2</type>
                                            <direction>1</direction>
                                            <text>287</text>
                                            <extraText></extraText>
                                            <url>
                                                <![CDATA[http://icons.mqcdn.com/icons/rs2.png?n=287&d=NORTH]]>
                                            </url>
                                        </sign>
                                    </signs>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_left_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>4067927,3422730,4084470,4084469,3740127,3740125,3740126,3439202,4084468,4084467,4972685,3703013,3703014,3897188</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-11,39.740047,-104.982337,0,0|purple-12,39.740139,-104.986114,0,0|&center=39.740093,-104.98422550000001&zoom=13&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7401</lat>
                                        <lng>-104.9861</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>0.54</distance>
                                    <time>103</time>
                                    <formattedTime>00:01:43</formattedTime>
                                    <attributes>0</attributes>
                                    <turnType>2</turnType>
                                    <direction>1</direction>
                                    <narrative>Turn right onto Lincoln St.</narrative>
                                    <directionName>North</directionName>
                                    <index>10</index>
                                    <streets>
                                        <street>Lincoln St</street>
                                    </streets>
                                    <signs/>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_right_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>3896372,3896371,3896370,3896351,3168263,3896350,3122726,3120972,3896349,3896348,3896347,3125701,3827352,3472605,3896346,3896176,3391707</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-12,39.740139,-104.986114,0,0|purple-13,39.747966,-104.986099,0,0|&center=39.744052499999995,-104.9861065&zoom=10&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.748</lat>
                                        <lng>-104.9861</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>0.096</distance>
                                    <time>18</time>
                                    <formattedTime>00:00:18</formattedTime>
                                    <attributes>0</attributes>
                                    <turnType>7</turnType>
                                    <direction>2</direction>
                                    <narrative>Turn slight left onto 20th St.</narrative>
                                    <directionName>Northwest</directionName>
                                    <index>11</index>
                                    <streets>
                                        <street>20th St</street>
                                    </streets>
                                    <signs/>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_slight_left_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>4488577,4153799,4153797,3909945,4469648,4561342,4384772</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-13,39.747966,-104.986099,0,0|purple-14,39.748939,-104.98738,0,0|&center=39.7484525,-104.9867395&zoom=13&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7489</lat>
                                        <lng>-104.9874</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>0.385</distance>
                                    <time>73</time>
                                    <formattedTime>00:01:13</formattedTime>
                                    <attributes>0</attributes>
                                    <turnType>1</turnType>
                                    <direction>1</direction>
                                    <narrative>Turn slight right onto Broadway.</narrative>
                                    <directionName>North</directionName>
                                    <index>12</index>
                                    <streets>
                                        <street>Broadway</street>
                                    </streets>
                                    <signs/>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_slight_right_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>3824494,3189806,3394854,3824495,3824496,3824497,3824498,3399132,3522664,3824499,3825489,3825490,3825491,3825492,3825493,3575093,3494294,3419506,3494295,3825494,3830074</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-14,39.748939,-104.98738,0,0|purple-15,39.754523999999996,-104.987388,0,0|&center=39.7517315,-104.98738399999999&zoom=11&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7545</lat>
                                        <lng>-104.9874</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>1.002</distance>
                                    <time>136</time>
                                    <formattedTime>00:02:16</formattedTime>
                                    <attributes>1024</attributes>
                                    <turnType>7</turnType>
                                    <direction>1</direction>
                                    <narrative>Turn slight left onto Park Ave W.</narrative>
                                    <directionName>North</directionName>
                                    <index>13</index>
                                    <streets>
                                        <street>Park Ave W</street>
                                    </streets>
                                    <signs/>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_slight_left_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>5008043,5008042,3889701,3889702,4247194,4611491,3592779,3554788,5008041,5008040,3484388,4403578,5008039,3983195,3576025,3576023,3576029,3576021,3576022,3576026,3576027,3576024,4244326,4040148,4040147,4040151,4040155,4040158,4205749,4205867,4205865,4205863,4205862,3633495,3385406,3868173,3185934,3337820</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-15,39.754523999999996,-104.987388,0,0|purple-16,39.766825999999995,-104.994834,0,0|&center=39.76067499999999,-104.99111099999999&zoom=9&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7668</lat>
                                        <lng>-104.9948</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>9.618</distance>
                                    <time>597</time>
                                    <formattedTime>00:09:57</formattedTime>
                                    <attributes>1152</attributes>
                                    <turnType>10</turnType>
                                    <direction>7</direction>
                                    <narrative>Merge onto I-70 W toward Grand Jct.</narrative>
                                    <directionName>West</directionName>
                                    <index>14</index>
                                    <streets>
                                        <street>I-70 W</street>
                                    </streets>
                                    <signs>
                                        <sign>
                                            <type>1</type>
                                            <direction>7</direction>
                                            <text>70</text>
                                            <extraText></extraText>
                                            <url>
                                                <![CDATA[http://icons.mqcdn.com/icons/rs1.png?n=70&d=WEST]]>
                                            </url>
                                        </sign>
                                    </signs>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_merge_right_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>4236646,4316867,4746874,4560795,5161787,5161791,5161792,5161788,4452091,4858924,4858923,3641533,3552716,4283548,3914906,4283550,4909639,3666323,4017670,4017666,4344237,4344233,4811560,4909643,3981380,3980851,4652155,4909644,4909647,4909649,4909694,4909696,4909699,4909702,4054223,4909705,4909707,4067357,4808573,4909713,4909714,4912571,4938406,4498243,4912576,4912579,4772189,3647754,3647760,3647757</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-16,39.766825999999995,-104.994834,0,0|purple-17,39.777862,-105.14205899999999,0,0|&center=39.772344,-105.0684465&zoom=7&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7779</lat>
                                        <lng>-105.1421</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>4.654</distance>
                                    <time>277</time>
                                    <formattedTime>00:04:37</formattedTime>
                                    <attributes>1152</attributes>
                                    <turnType>10</turnType>
                                    <direction>7</direction>
                                    <narrative>Merge onto CO-58 W via EXIT 265 toward Golden Central City.</narrative>
                                    <directionName>West</directionName>
                                    <index>15</index>
                                    <streets>
                                        <street>CO-58 W</street>
                                    </streets>
                                    <signs>
                                        <sign>
                                            <type>505</type>
                                            <direction>7</direction>
                                            <text>58</text>
                                            <extraText></extraText>
                                            <url>
                                                <![CDATA[http://icons.mqcdn.com/icons/rs505.png?n=58&d=WEST]]>
                                            </url>
                                        </sign>
                                        <sign>
                                            <type>1001</type>
                                            <direction>0</direction>
                                            <text>265</text>
                                            <extraText></extraText>
                                            <url>
                                                <![CDATA[http://icons.mqcdn.com/icons/rs1001.png?n=265&d=RIGHT]]>
                                            </url>
                                        </sign>
                                    </signs>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_merge_right_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>4374327,4374328,4374329,4374330,4374331,4374332,4374333,4374334,4374373,4207452,4374374,4374375,3848341,4234575,4374376,4374377,3997848,4081727,4081726,4081720,4081717,4081718,4081719,4081722,4081721,3589604,3589607,3589605,3589613,3589603,3589601,3589682,4374378,4374379,3925548,4374380,4374381,4374382,4374383,4165547,4009664,4009663,3553049,3553139,3553046,3553043,3553044,3553045</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-17,39.777862,-105.14205899999999,0,0|purple-18,39.761168999999995,-105.224143,0,0|&center=39.7695155,-105.183101&zoom=8&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7612</lat>
                                        <lng>-105.2241</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>0.111</distance>
                                    <time>22</time>
                                    <formattedTime>00:00:22</formattedTime>
                                    <attributes>0</attributes>
                                    <turnType>14</turnType>
                                    <direction>6</direction>
                                    <narrative>Take the Washington Avenue exit.</narrative>
                                    <directionName>Southwest</directionName>
                                    <index>16</index>
                                    <streets/>
                                    <signs/>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_gr_exitright_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>4057046,3634784</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-18,39.761168999999995,-105.224143,0,0|purple-19,39.76054,-105.226051,0,0|&center=39.76085449999999,-105.225097&zoom=14&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint>
                                        <lat>39.7605</lat>
                                        <lng>-105.2261</lng>
                                    </startPoint>
                                    <maneuverNotes/>
                                    <distance>0.928</distance>
                                    <time>163</time>
                                    <formattedTime>00:02:43</formattedTime>
                                    <attributes>1024</attributes>
                                    <turnType>6</turnType>
                                    <direction>5</direction>
                                    <narrative>Turn left onto Washington Ave.</narrative>
                                    <directionName>Southeast</directionName>
                                    <index>17</index>
                                    <streets>
                                        <street>Washington Ave</street>
                                    </streets>
                                    <signs/>
                                    <iconUrl>
                                        <![CDATA[https://content.mapquest.com/mqsite/turnsigns/rs_left_sm.gif]]>
                                    </iconUrl>
                                    <linkIds>4847861,4847862,5260749,4543671,3469557,4728629,4728628,4728627,4014524,4008966,4008965,4055641,4313970,3209994,3300483,3566169,4098147,4313969,3395739,4313968,4313967,4313966,3979944,3245420,3186565,3283863,3167400,3586506,3187396,3244218,3287208,3424554,3239351,4248246,3244207</linkIds>
                                    <mapUrl>
                                        <![CDATA[https://www.mapquestapi.com/staticmap/v5/getmap?key=KEY&type=map&size=225,160&pois=purple-19,39.76054,-105.226051,0,0|purple-20,39.749671,-105.21601799999999,0,0|&center=39.7551055,-105.2210345&zoom=10&rand=-157296865&session=5732a4a3-00d4-0008-02b7-7552-00163e3f3cf3]]>
                                    </mapUrl>
                                </maneuver>
                                <maneuver>
                                    <startPoint/>
                                    <maneuverNotes/>
                                    <distance>0.0</distance>
                                    <time>0</time>
                                    <formattedTime>00:00:00</formattedTime>
                                    <attributes>0</attributes>
                                    <turnType>-1</turnType>
                                    <direction>0</direction>
                                    <narrative>Welcome to GOLDEN, CO.</narrative>
                                    <directionName></directionName>
                                    <index>18</index>
                                    <streets/>
                                    <signs/>
                                    <linkIds/>
                                    <mapUrl>
                                        <![CDATA[]]>
                                    </mapUrl>
                                </maneuver>
                            </maneuvers>
                            <hasTollRoad>false</hasTollRoad>
                            <hasFerry>false</hasFerry>
                            <hasHighway>true</hasHighway>
                            <hasSeasonalClosure>false</hasSeasonalClosure>
                            <hasUnpaved>false</hasUnpaved>
                            <hasCountryCross>false</hasCountryCross>
                            <hasBridge>true</hasBridge>
                            <hasTunnel>false</hasTunnel>
                        </leg>
                    </legs>
                    <hasTollRoad>false</hasTollRoad>
                    <hasFerry>false</hasFerry>
                    <hasHighway>true</hasHighway>
                    <hasSeasonalClosure>false</hasSeasonalClosure>
                    <hasUnpaved>false</hasUnpaved>
                    <hasCountryCross>false</hasCountryCross>
                    <hasBridge>true</hasBridge>
                    <hasTunnel>false</hasTunnel>
                    <locations>
                        <location>
                            <street></street>
                            <adminArea5 type="City">Denver</adminArea5>
                            <adminArea3 type="State">CO</adminArea3>
                            <adminArea4 type="County">Denver County</adminArea4>
                            <postalCode></postalCode>
                            <adminArea1 type="Country">US</adminArea1>
                            <geocodeQuality>CITY</geocodeQuality>
                            <geocodeQualityCode>A5XAX</geocodeQualityCode>
                            <dragPoint>false</dragPoint>
                            <sideOfStreet>N</sideOfStreet>
                            <displayLatLng>
                                <latLng>
                                    <lat>39.738452</lat>
                                    <lng>-104.984855</lng>
                                </latLng>
                            </displayLatLng>
                            <linkId>3474069</linkId>
                            <type>s</type>
                            <latLng>
                                <lat>39.738453</lat>
                                <lng>-104.984853</lng>
                            </latLng>
                        </location>
                        <location>
                            <street></street>
                            <adminArea5 type="City">Golden</adminArea5>
                            <adminArea3 type="State">CO</adminArea3>
                            <adminArea4 type="County">Jefferson County</adminArea4>
                            <postalCode></postalCode>
                            <adminArea1 type="Country">US</adminArea1>
                            <geocodeQuality>CITY</geocodeQuality>
                            <geocodeQualityCode>A5XAX</geocodeQualityCode>
                            <dragPoint>false</dragPoint>
                            <sideOfStreet>N</sideOfStreet>
                            <displayLatLng>
                                <latLng>
                                    <lat>39.749671</lat>
                                    <lng>-105.216018</lng>
                                </latLng>
                            </displayLatLng>
                            <linkId>3244207</linkId>
                            <type>s</type>
                            <latLng>
                                <lat>39.749672</lat>
                                <lng>-105.216019</lng>
                            </latLng>
                        </location>
                    </locations>
                    <locationSequence>0,1</locationSequence>
                    <computedWaypoints/>
                    <shape>
                        <shapePoints>
                            <latLng>
                                <lat>39.738452</lat>
                                <lng>-104.984855</lng>
                            </latLng>
                            <latLng>
                                <lat>39.738452</lat>
                                <lng>-104.982322</lng>
                            </latLng>
                            <latLng>
                                <lat>39.738452</lat>
                                <lng>-104.982322</lng>
                            </latLng>
                            <latLng>
                                <lat>39.740047</lat>
                                <lng>-104.982337</lng>
                            </latLng>
                            <latLng>
                                <lat>39.740047</lat>
                                <lng>-104.982337</lng>
                            </latLng>
                            <latLng>
                                <lat>39.740139</lat>
                                <lng>-104.986114</lng>
                            </latLng>
                            <latLng>
                                <lat>39.740139</lat>
                                <lng>-104.986114</lng>
                            </latLng>
                            <latLng>
                                <lat>39.747966</lat>
                                <lng>-104.986099</lng>
                            </latLng>
                            <latLng>
                                <lat>39.747966</lat>
                                <lng>-104.986099</lng>
                            </latLng>
                            <latLng>
                                <lat>39.748939</lat>
                                <lng>-104.98738</lng>
                            </latLng>
                            <latLng>
                                <lat>39.748939</lat>
                                <lng>-104.98738</lng>
                            </latLng>
                            <latLng>
                                <lat>39.754524</lat>
                                <lng>-104.987388</lng>
                            </latLng>
                            <latLng>
                                <lat>39.754524</lat>
                                <lng>-104.987388</lng>
                            </latLng>
                            <latLng>
                                <lat>39.760353</lat>
                                <lng>-104.994461</lng>
                            </latLng>
                            <latLng>
                                <lat>39.766826</lat>
                                <lng>-104.994834</lng>
                            </latLng>
                            <latLng>
                                <lat>39.766826</lat>
                                <lng>-104.994834</lng>
                            </latLng>
                            <latLng>
                                <lat>39.76733</lat>
                                <lng>-104.992927</lng>
                            </latLng>
                            <latLng>
                                <lat>39.772129</lat>
                                <lng>-104.989784</lng>
                            </latLng>
                            <latLng>
                                <lat>39.7807</lat>
                                <lng>-104.988189</lng>
                            </latLng>
                            <latLng>
                                <lat>39.781425</lat>
                                <lng>-104.989395</lng>
                            </latLng>
                            <latLng>
                                <lat>39.781501</lat>
                                <lng>-104.993782</lng>
                            </latLng>
                            <latLng>
                                <lat>39.783615</lat>
                                <lng>-105.002326</lng>
                            </latLng>
                            <latLng>
                                <lat>39.783267</lat>
                                <lng>-105.006698</lng>
                            </latLng>
                            <latLng>
                                <lat>39.783733</lat>
                                <lng>-105.019996</lng>
                            </latLng>
                            <latLng>
                                <lat>39.784351</lat>
                                <lng>-105.024551</lng>
                            </latLng>
                            <latLng>
                                <lat>39.783432</lat>
                                <lng>-105.032981</lng>
                            </latLng>
                            <latLng>
                                <lat>39.783596</lat>
                                <lng>-105.043449</lng>
                            </latLng>
                            <latLng>
                                <lat>39.785129</lat>
                                <lng>-105.048789</lng>
                            </latLng>
                            <latLng>
                                <lat>39.783485</lat>
                                <lng>-105.054321</lng>
                            </latLng>
                            <latLng>
                                <lat>39.783561</lat>
                                <lng>-105.066688</lng>
                            </latLng>
                            <latLng>
                                <lat>39.784347</lat>
                                <lng>-105.069946</lng>
                            </latLng>
                            <latLng>
                                <lat>39.7868</lat>
                                <lng>-105.073486</lng>
                            </latLng>
                            <latLng>
                                <lat>39.787265</lat>
                                <lng>-105.07566</lng>
                            </latLng>
                            <latLng>
                                <lat>39.783855</lat>
                                <lng>-105.091567</lng>
                            </latLng>
                            <latLng>
                                <lat>39.784317</lat>
                                <lng>-105.108131</lng>
                            </latLng>
                            <latLng>
                                <lat>39.784042</lat>
                                <lng>-105.124992</lng>
                            </latLng>
                            <latLng>
                                <lat>39.7821</lat>
                                <lng>-105.132003</lng>
                            </latLng>
                            <latLng>
                                <lat>39.778896</lat>
                                <lng>-105.140548</lng>
                            </latLng>
                            <latLng>
                                <lat>39.777862</lat>
                                <lng>-105.142059</lng>
                            </latLng>
                            <latLng>
                                <lat>39.777862</lat>
                                <lng>-105.142059</lng>
                            </latLng>
                            <latLng>
                                <lat>39.776073</lat>
                                <lng>-105.143806</lng>
                            </latLng>
                            <latLng>
                                <lat>39.775421</lat>
                                <lng>-105.145378</lng>
                            </latLng>
                            <latLng>
                                <lat>39.774906</lat>
                                <lng>-105.159736</lng>
                            </latLng>
                            <latLng>
                                <lat>39.773773</lat>
                                <lng>-105.169128</lng>
                            </latLng>
                            <latLng>
                                <lat>39.771717</lat>
                                <lng>-105.184387</lng>
                            </latLng>
                            <latLng>
                                <lat>39.76947</lat>
                                <lng>-105.192085</lng>
                            </latLng>
                            <latLng>
                                <lat>39.76939</lat>
                                <lng>-105.203712</lng>
                            </latLng>
                            <latLng>
                                <lat>39.761863</lat>
                                <lng>-105.219764</lng>
                            </latLng>
                            <latLng>
                                <lat>39.761169</lat>
                                <lng>-105.224143</lng>
                            </latLng>
                            <latLng>
                                <lat>39.761169</lat>
                                <lng>-105.224143</lng>
                            </latLng>
                            <latLng>
                                <lat>39.76054</lat>
                                <lng>-105.226051</lng>
                            </latLng>
                            <latLng>
                                <lat>39.76054</lat>
                                <lng>-105.226051</lng>
                            </latLng>
                            <latLng>
                                <lat>39.749671</lat>
                                <lng>-105.216018</lng>
                            </latLng>
                        </shapePoints>
                        <legIndexes>
                            <index>0</index>
                            <index>53</index>
                        </legIndexes>
                        <maneuverIndexes>
                            <index>0</index>
                            <index>2</index>
                            <index>4</index>
                            <index>6</index>
                            <index>8</index>
                            <index>10</index>
                            <index>12</index>
                            <index>15</index>
                            <index>39</index>
                            <index>49</index>
                            <index>51</index>
                            <index>52</index>
                        </maneuverIndexes>
                    </shape>
                </route>
            </response>
        </alternateRoutes>
        <shape>
            <shapePoints>
                <latLng>
                    <lat>39.738452</lat>
                    <lng>-104.984855</lng>
                </latLng>
                <latLng>
                    <lat>39.736877</lat>
                    <lng>-104.98484</lng>
                </latLng>
                <latLng>
                    <lat>39.736877</lat>
                    <lng>-104.98484</lng>
                </latLng>
                <latLng>
                    <lat>39.736881</lat>
                    <lng>-105.000137</lng>
                </latLng>
                <latLng>
                    <lat>39.736881</lat>
                    <lng>-105.000137</lng>
                </latLng>
                <latLng>
                    <lat>39.726455</lat>
                    <lng>-105.000183</lng>
                </latLng>
                <latLng>
                    <lat>39.726455</lat>
                    <lng>-105.000183</lng>
                </latLng>
                <latLng>
                    <lat>39.725769</lat>
                    <lng>-105.000808</lng>
                </latLng>
                <latLng>
                    <lat>39.725307</lat>
                    <lng>-105.018676</lng>
                </latLng>
                <latLng>
                    <lat>39.725803</lat>
                    <lng>-105.053161</lng>
                </latLng>
                <latLng>
                    <lat>39.725383</lat>
                    <lng>-105.177268</lng>
                </latLng>
                <latLng>
                    <lat>39.725383</lat>
                    <lng>-105.177268</lng>
                </latLng>
                <latLng>
                    <lat>39.725116</lat>
                    <lng>-105.19844</lng>
                </latLng>
                <latLng>
                    <lat>39.725704</lat>
                    <lng>-105.201126</lng>
                </latLng>
                <latLng>
                    <lat>39.728862</lat>
                    <lng>-105.204841</lng>
                </latLng>
                <latLng>
                    <lat>39.730148</lat>
                    <lng>-105.209274</lng>
                </latLng>
                <latLng>
                    <lat>39.731399</lat>
                    <lng>-105.211334</lng>
                </latLng>
                <latLng>
                    <lat>39.74517</lat>
                    <lng>-105.223335</lng>
                </latLng>
                <latLng>
                    <lat>39.74517</lat>
                    <lng>-105.223335</lng>
                </latLng>
                <latLng>
                    <lat>39.745735</lat>
                    <lng>-105.22319</lng>
                </latLng>
                <latLng>
                    <lat>39.749671</lat>
                    <lng>-105.216018</lng>
                </latLng>
            </shapePoints>
            <legIndexes>
                <index>0</index>
                <index>21</index>
            </legIndexes>
            <maneuverIndexes>
                <index>0</index>
                <index>2</index>
                <index>4</index>
                <index>6</index>
                <index>11</index>
                <index>18</index>
                <index>20</index>
            </maneuverIndexes>
        </shape>
    </route>
</response>