{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"🛠️ TraceRoute – options Parameter","llmstxt":{"hide":false,"sections":[{"title":"Table of contents","includeFiles":["**/*"],"excludeFiles":[]}],"excludeFiles":[]}},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_parameters_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"️-traceroute--options-parameter","__idx":0},"children":["🛠️ TraceRoute – options Parameter"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in the TraceRoute API allows you to customize the output content and format of the route calculation. Each value in the array activates a specific feature or additional result in the response."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This tutorial explains the purpose and effect of each option, when to use them, and provides examples of how to include them in your request."]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_energyConsumption_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-energy_consumption--estimate-energy-usage-along-the-route","__idx":1},"children":["⚡ ENERGY_CONSUMPTION – Estimate energy usage along the route"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to retrieve ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["energy consumption estimates"]}," for each segment of the route, based on your vehicle’s energy characteristics (like battery, weight, aerodynamic profile, etc.)."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When this option is set, the API returns a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["energyConsumption"]}," field in the response, representing the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["estimated energy usage"]}," in kilowatt-hours (kWh) across the entire route."," ","This helps assess whether a full trip is feasible with the current battery or if charging stops are needed."]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["⚠️ This option ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["requires"]}," a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["routingEnergyVehicleFeature"]}," block in your ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["routingVehicleProfile"]},". If it's missing, the request may fail or return no consumption data."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ENERGY_CONSUMPTION"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in your TraceRoute request, and make sure to include a properly filled ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["routingEnergyVehicleFeature"]},"."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"ENERGY_CONSUMPTION\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingEnergyVehicleFeature\": {\n      \"batCapacity\": 60.0,\n      \"energyLoad\": 42.0,\n      \"payload\": 100,\n      \"auxConsumption\": 800,\n      \"dryWeight\": 1800,\n      \"crr\": 0.01,\n      \"scx\": 0.6,\n      \"engineEfficiency\": 0.9,\n      \"regenerativeBraking\": true,\n      \"extTemp\": 20.0,\n      \"maxAccel\": 2.5,\n      \"maxDecel\": -3.0\n    }\n  },\n  \"options\": [\"ENERGY_CONSUMPTION\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3488,\n        \"lat\": 48.8534,\n        \"speed\": 20.0,\n        \"time\": 1720519200000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3600,\n        \"lat\": 48.8580,\n        \"speed\": 35.0,\n        \"time\": 1720519260000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3610,\n        \"lat\": 48.8585,\n        \"speed\": 33.0,\n        \"time\": 1720519320000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3620,\n        \"lat\": 48.8590,\n        \"speed\": 36.0,\n        \"time\": 1720519380000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3630,\n        \"lat\": 48.8595,\n        \"speed\": 38.0,\n        \"time\": 1720519440000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3640,\n        \"lat\": 48.8600,\n        \"speed\": 40.0,\n        \"time\": 1720519500000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3650,\n        \"lat\": 48.8605,\n        \"speed\": 41.0,\n        \"time\": 1720519560000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3660,\n        \"lat\": 48.8610,\n        \"speed\": 42.0,\n        \"time\": 1720519620000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3670,\n        \"lat\": 48.8615,\n        \"speed\": 40.0,\n        \"time\": 1720519680000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3680,\n        \"lat\": 48.8620,\n        \"speed\": 38.0,\n        \"time\": 1720519740000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3690,\n        \"lat\": 48.8625,\n        \"speed\": 35.0,\n        \"time\": 1720519800000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3700,\n        \"lat\": 48.8630,\n        \"speed\": 30.0,\n        \"time\": 1720519860000\n      }\n    }\n  ]\n}\n\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": false,\n      \"usedOrder\": 0,\n      \"confidenceValue\": 0,\n      \"distanceFromRequest\": 0,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.360015114939581,\n        \"lat\": 48.858015\n      },\n      \"confidenceValue\": 0.9,\n      \"distanceFromRequest\": 2,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.361159644312669,\n        \"lat\": 48.8586675\n      },\n      \"confidenceValue\": 0.85,\n      \"distanceFromRequest\": 22.01,\n      \"polylineIndex\": -1,\n      \"duration\": 51,\n      \"length\": 222\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.3622205992189427,\n        \"lat\": 48.85888\n      },\n      \"confidenceValue\": 0.28927187521472786,\n      \"distanceFromRequest\": 20.96,\n      \"polylineIndex\": -1,\n      \"duration\": 92,\n      \"length\": 330\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.3632036770414344,\n        \"lat\": 48.859815\n      },\n      \"confidenceValue\": 0.4585633810385473,\n      \"distanceFromRequest\": 38.11,\n      \"polylineIndex\": -1,\n      \"duration\": 212,\n      \"length\": 770\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.3640594759297437,\n        \"lat\": 48.86009\n      },\n      \"confidenceValue\": 0.6287187675009722,\n      \"distanceFromRequest\": 10.92,\n      \"polylineIndex\": -1,\n      \"duration\": 254,\n      \"length\": 878\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.36456,\n        \"lat\": 48.86013\n      },\n      \"confidenceValue\": 0.23113073511408522,\n      \"distanceFromRequest\": 52.3,\n      \"polylineIndex\": -1,\n      \"duration\": 274,\n      \"length\": 940\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.3660428283122403,\n        \"lat\": 48.86114125\n      },\n      \"confidenceValue\": 0.85,\n      \"distanceFromRequest\": 16.03,\n      \"polylineIndex\": -1,\n      \"duration\": 394,\n      \"length\": 1342\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.3669423826336007,\n        \"lat\": 48.861375\n      },\n      \"confidenceValue\": 0.23983956831897124,\n      \"distanceFromRequest\": 14.54,\n      \"polylineIndex\": -1,\n      \"duration\": 501,\n      \"length\": 1656\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.3679160573446674,\n        \"lat\": 48.86215125\n      },\n      \"confidenceValue\": 0.35939913638776866,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 567,\n      \"length\": 1938\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.369032257414646,\n        \"lat\": 48.86244875\n      },\n      \"confidenceValue\": 0.85,\n      \"distanceFromRequest\": 6.17,\n      \"polylineIndex\": -1,\n      \"duration\": 583,\n      \"length\": 2026\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.3701541802535973,\n        \"lat\": 48.86275125\n      },\n      \"confidenceValue\": 0.85,\n      \"distanceFromRequest\": 29.9,\n      \"polylineIndex\": -1,\n      \"duration\": 599,\n      \"length\": 2114\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2114,\n      \"duration\": 599,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 12.705175,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"energyConsumption\": 0.4256013630880502,\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 2.36002,\n          \"lat\": 48.85802\n        },\n        \"stop\": {\n          \"lon\": 2.37015,\n          \"lat\": 48.86275\n        },\n        \"distanceFirstMatched\": 0.56,\n        \"distanceLastMatched\": 0.14,\n        \"interDests\": null\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Enables the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["energyConsumption"]}," field in the response, helping you estimate the vehicle’s energy needs across the route."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_noMinimalWaypoints_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-no_minimal_waypoints--disable-minimal-waypoint-filtering","__idx":2},"children":["🧭 NO_MINIMAL_WAYPOINTS – Disable minimal waypoint filtering"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["all original waypoints"]}," used in the request to be returned in the response, ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["even those not required to reproduce the route"]},". This is useful for debugging or for precise post-analysis of GPS data."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["By default, the TraceRoute service filters out intermediate waypoints that are not needed to reconstruct the final route."," ","This ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["\"minimal waypoints\" algorithm"]}," improves performance and response size."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Enabling ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["NO_MINIMAL_WAYPOINTS"]}," disables this behavior:"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔁 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["All input coordinates"]}," marked with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["keptByMinimalWp = true"]}," are preserved in the response,"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📈 Resulting in faster processing and better fidelity when analyzing the full trace."]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["ℹ️ This is a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["sub-option"]}," of the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]}," option."," ","It has no effect unless ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]}," is also included."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add both ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]}," and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["NO_MINIMAL_WAYPOINTS"]}," to the options array in your TraceRoute request."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Make sure to set ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["\"keptByMinimalWp\": true"]}," on the destinations you want to preserve."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"\"options\": [\"WAYPOINTS\", \"NO_MINIMAL_WAYPOINTS\"]\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 150,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1.5,\n      \"axleWeight\": 0.8\n    }\n  },\n  \"options\": [\"WAYPOINTS\", \"NO_MINIMAL_WAYPOINTS\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3488,\n        \"lat\": 48.8534,\n        \"speed\": 30.0,\n        \"time\": 1720519200000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3600,\n        \"lat\": 48.8580,\n        \"speed\": 28.0,\n        \"time\": 1720519260000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3610,\n        \"lat\": 48.8585,\n        \"speed\": 29.0,\n        \"time\": 1720519320000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3620,\n        \"lat\": 48.8590,\n        \"speed\": 31.0,\n        \"time\": 1720519380000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3630,\n        \"lat\": 48.8595,\n        \"speed\": 34.0,\n        \"time\": 1720519440000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3640,\n        \"lat\": 48.8600,\n        \"speed\": 36.0,\n        \"time\": 1720519500000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3650,\n        \"lat\": 48.8605,\n        \"speed\": 38.0,\n        \"time\": 1720519560000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3660,\n        \"lat\": 48.8610,\n        \"speed\": 39.0,\n        \"time\": 1720519620000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3670,\n        \"lat\": 48.8615,\n        \"speed\": 40.0,\n        \"time\": 1720519680000\n      },\n      \"keptByMinimalWp\": true\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3680,\n        \"lat\": 48.8620,\n        \"speed\": 32.0,\n        \"time\": 1720519740000\n      },\n      \"keptByMinimalWp\": true\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.360015114939581,\n        \"lat\": 48.85801375\n      },\n      \"confidenceValue\": 1,\n      \"distanceFromRequest\": 968.78,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.360015114939581,\n        \"lat\": 48.85801375\n      },\n      \"confidenceValue\": 1,\n      \"distanceFromRequest\": 1.89,\n      \"polylineIndex\": -1,\n      \"duration\": 154,\n      \"length\": 1281\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.361,\n        \"lat\": 48.8585\n      },\n      \"confidenceValue\": 1,\n      \"distanceFromRequest\": 0,\n      \"polylineIndex\": -1,\n      \"duration\": 154,\n      \"length\": 1281\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.362,\n        \"lat\": 48.859\n      },\n      \"confidenceValue\": 1,\n      \"distanceFromRequest\": 0,\n      \"polylineIndex\": -1,\n      \"duration\": 154,\n      \"length\": 1281\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.363,\n        \"lat\": 48.8595\n      },\n      \"confidenceValue\": 1,\n      \"distanceFromRequest\": 0,\n      \"polylineIndex\": -1,\n      \"duration\": 154,\n      \"length\": 1281\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.364,\n        \"lat\": 48.86\n      },\n      \"confidenceValue\": 1,\n      \"distanceFromRequest\": 0,\n      \"polylineIndex\": -1,\n      \"duration\": 154,\n      \"length\": 1281\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.365,\n        \"lat\": 48.8605\n      },\n      \"confidenceValue\": 1,\n      \"distanceFromRequest\": 0,\n      \"polylineIndex\": -1,\n      \"duration\": 154,\n      \"length\": 1281\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.366,\n        \"lat\": 48.861\n      },\n      \"confidenceValue\": 1,\n      \"distanceFromRequest\": 0,\n      \"polylineIndex\": -1,\n      \"duration\": 154,\n      \"length\": 1281\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.36766,\n        \"lat\": 48.86209\n      },\n      \"confidenceValue\": 0.19683106570451814,\n      \"distanceFromRequest\": 81.55,\n      \"polylineIndex\": -1,\n      \"duration\": 241,\n      \"length\": 2003\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.3679160573446674,\n        \"lat\": 48.86215125\n      },\n      \"confidenceValue\": 0.27536809596388057,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 247,\n      \"length\": 2022\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2022,\n      \"duration\": 247,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 29.470446,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"boundingBox\": {\n        \"minLon\": 2.360015114939581,\n        \"minLat\": 48.85801375,\n        \"maxLon\": 2.3753,\n        \"maxLat\": 48.86617\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 2.36002,\n          \"lat\": 48.85801\n        },\n        \"stop\": {\n          \"lon\": 2.36792,\n          \"lat\": 48.86215\n        },\n        \"distanceFirstMatched\": 0.42,\n        \"distanceLastMatched\": 0.14,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 2.360015114939581,\n          \"lat\": 48.85801375\n        },\n        {\n          \"lon\": 2.367,\n          \"lat\": 48.8615\n        },\n        {\n          \"lon\": 2.37464,\n          \"lat\": 48.86558\n        },\n        {\n          \"lon\": 2.3753,\n          \"lat\": 48.86617\n        },\n        {\n          \"lon\": 2.36766,\n          \"lat\": 48.86209\n        },\n        {\n          \"lon\": 2.3679160573446674,\n          \"lat\": 48.86215125\n        }\n      ],\n      \"waypoints\": [\n        {\n          \"usedDestinationIndex\": 0,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.360015114939581,\n            \"lat\": 48.85801375\n          },\n          \"angle\": 126,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": false,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 1,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.360015114939581,\n            \"lat\": 48.85801375\n          },\n          \"angle\": 126,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": false,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 2,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.361,\n            \"lat\": 48.8585\n          },\n          \"angle\": 51,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": true,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 3,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.362,\n            \"lat\": 48.859\n          },\n          \"angle\": 51,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": true,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 4,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.363,\n            \"lat\": 48.8595\n          },\n          \"angle\": 51,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": true,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 5,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.364,\n            \"lat\": 48.86\n          },\n          \"angle\": 51,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": true,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 6,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.365,\n            \"lat\": 48.8605\n          },\n          \"angle\": 51,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": true,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 7,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.366,\n            \"lat\": 48.861\n          },\n          \"angle\": 51,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": true,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 8,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.36766,\n            \"lat\": 48.86209\n          },\n          \"angle\": 71,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": false,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 9,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.3679160573446674,\n            \"lat\": 48.86215125\n          },\n          \"angle\": 70,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": false,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        }\n      ]\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Forces the API to keep all waypoints marked as ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["keptByMinimalWp: true"]}," in the final result, instead of reducing to a minimal list."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_offroads_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-offroads--return-off-road-polylines-in-waypoints","__idx":3},"children":["🛤 OFFROADS – Return off-road polylines in waypoints"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["identify off-road segments"]}," between GPS points that ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["do not align perfectly with the road network"]},". This is useful when working with noisy GPS traces, or to detect areas without mapped roads (e.g. private roads, parking areas, tunnels)."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When enabled, the API adds an ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["offRoad"]}," polyline to each relevant ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["waypoint"]}," in the response."," ","This polyline connects the original GPS point to the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["closest projected point on the road network"]},"."]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🧩 This is a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["sub-option"]}," of the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]}," option. It has ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["no effect"]}," unless ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]}," is also included."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Each ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["offRoad"]}," field in the response is a simple array of two points:"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The original GPS position"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The snapped position on the road"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add both ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]}," and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["OFFROADS"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in your TraceRoute request."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"json","header":{"controls":{"copy":{}}},"source":"\"options\": [\"WAYPOINTS\", \"OFFROADS\"]\n","lang":"json"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3470,\n        \"lat\": 48.8540,\n        \"speed\": 25.0,\n        \"time\": 1720519200000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3499,\n        \"lat\": 48.8582,\n        \"speed\": 32.0,\n        \"time\": 1720519260000\n      }\n    }\n  ],\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 150,\n      \"width\": 180,\n      \"length\": 420,\n      \"weight\": 1.4,\n      \"axleWeight\": 0.8\n    }\n  },\n  \"options\": [\"WAYPOINTS\", \"OFFROADS\"]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.346790437055014,\n        \"lat\": 48.85365625\n      },\n      \"confidenceValue\": 0.06817058374151802,\n      \"distanceFromRequest\": 41.23,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.34994,\n        \"lat\": 48.85854\n      },\n      \"confidenceValue\": 0.07809670409272003,\n      \"distanceFromRequest\": 37.96,\n      \"polylineIndex\": -1,\n      \"duration\": 251,\n      \"length\": 836\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 836,\n      \"duration\": 251,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 11.990438,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 2.34679,\n          \"lat\": 48.85366\n        },\n        \"stop\": {\n          \"lon\": 2.34994,\n          \"lat\": 48.85854\n        },\n        \"distanceFirstMatched\": 0.42,\n        \"distanceLastMatched\": 0,\n        \"interDests\": null\n      },\n      \"waypoints\": [\n        {\n          \"usedDestinationIndex\": 0,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.346790437055014,\n            \"lat\": 48.85365625\n          },\n          \"angle\": 291,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": false,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 1,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.34994,\n            \"lat\": 48.85854\n          },\n          \"angle\": 99,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": false,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": true,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        }\n      ]\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_offroads_rawData_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-offroads_rawdata--include-raw-map-attributes-for-off-road-segments","__idx":4},"children":["🧪 OFFROADS_RAWDATA – Include raw map attributes for off-road segments"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["detailed map information"]}," about the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["off-road segments"]}," (e.g. which road type it snapped to, surface type, etc.)."," ","This is particularly useful for ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["debugging"]},", ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["analysis"]},", or building advanced visualizations."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When enabled, the API includes ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["raw map attributes"]}," in the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["offRoadRawData"]}," field for each ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["waypoint"]}," that contains an ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["offRoad"]}," segment."," ","These attributes reflect native metadata from the matched road segment, such as:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Road classification"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Surface type"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Speed limit"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Access restrictions"]}]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🧩 This is a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["sub-option"]}," of ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["OFFROADS"]},", and has ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["no effect"]}," unless ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["OFFROADS"]}," is also present."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add the options ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]},", ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["OFFROADS"]}," and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["OFFROADS_RAWDATA"]}," in your TraceRoute request."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"WAYPOINTS\", \"OFFROADS\", \"OFFROADS_RAWDATA\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.347,\n        \"lat\": 48.854,\n        \"speed\": 28.5,\n        \"time\": 1720519200000\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 2.3499,\n        \"lat\": 48.8582,\n        \"speed\": 30.2,\n        \"time\": 1720519260000\n      }\n    }\n  ],\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 150,\n      \"width\": 180,\n      \"length\": 420,\n      \"weight\": 1.4,\n      \"axleWeight\": 0.8\n    }\n  },\n  \"options\": [\"WAYPOINTS\", \"OFFROADS\", \"OFFROADS_RAWDATA\"]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.346790437055014,\n        \"lat\": 48.85365625\n      },\n      \"confidenceValue\": 0.06817058374151802,\n      \"distanceFromRequest\": 41.23,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 2.34994,\n        \"lat\": 48.85854\n      },\n      \"confidenceValue\": 0.07809670409272003,\n      \"distanceFromRequest\": 37.96,\n      \"polylineIndex\": -1,\n      \"duration\": 251,\n      \"length\": 836\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 836,\n      \"duration\": 251,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 11.990438,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 2.34679,\n          \"lat\": 48.85366\n        },\n        \"stop\": {\n          \"lon\": 2.34994,\n          \"lat\": 48.85854\n        },\n        \"distanceFirstMatched\": 0.42,\n        \"distanceLastMatched\": 0,\n        \"interDests\": null\n      },\n      \"waypoints\": [\n        {\n          \"usedDestinationIndex\": 0,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.346790437055014,\n            \"lat\": 48.85365625\n          },\n          \"angle\": 291,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": false,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": false,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        },\n        {\n          \"usedDestinationIndex\": 1,\n          \"polylineIndex\": -1,\n          \"coordinate\": {\n            \"lon\": 2.34994,\n            \"lat\": 48.85854\n          },\n          \"angle\": 99,\n          \"radius\": 0,\n          \"uturn\": false,\n          \"ignorePoint\": false,\n          \"ignoreTrafficDirections\": false,\n          \"ignoreRoadBlocks\": false,\n          \"ignoreRestrictions\": true,\n          \"avoidUTurn\": \"UNDEF\",\n          \"useStartAngle\": \"UNDEF\",\n          \"useStopRoadSide\": \"UNDEF\"\n        }\n      ]\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Adds ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["offRoadRawData"]}," alongside each ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["offRoad"]}," segment, giving access to native road metadata for advanced inspection."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_openlr_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"️-openlr--encode-the-route-geometry-in-openlr-format","__idx":5},"children":["🛰️ OPENLR – Encode the route geometry in OpenLR format"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to share or store the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["route geometry"]}," in a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["compact"]},", ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["interoperable format"]},", especially for use with systems or tools supporting ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["OpenLR"]}," (like navigation SDKs, traffic systems, etc.)."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When this option is enabled, the API attempts to encode the route's geometry into an ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["OpenLR base64 string"]},", and includes it in the response under the field ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["openlr"]},"."]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["OpenLR is a location referencing standard designed for compact binary representation."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["The encoding may ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["fail"]}," for certain types of routes (e.g. ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["U-turns"]}," or geometries with high ambiguity), in which case the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["openlr"]}," field will be ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["absent"]},"."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["OPENLR"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in your TraceRoute request."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"OPENLR\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 150,\n      \"width\": 180,\n      \"length\": 420,\n      \"weight\": 1.4,\n      \"axleWeight\": 0.8\n    }\n  },\n  \"options\": [\"OPENLR\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242190000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n        {\n          \"lon\": 7.06668,\n          \"lat\": 43.6162\n        },\n        {\n          \"lon\": 7.06701,\n          \"lat\": 43.61621\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Adds an openlr field in the response with a base64-encoded representation of the route geometry.",{"$$mdtype":"Tag","name":"br","attributes":{},"children":[]}," ","⚠️ May be missing if encoding is not possible (e.g. U-turns)."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_polyline_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-polyline--return-the-route-geometry-as-a-polyline","__idx":6},"children":["🧩 POLYLINE – Return the route geometry as a polyline"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to visualize the full geometry of the matched route on a map using a compact and standard format like an encoded polyline."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POLYLINE"]}," option is enabled, the response includes an additional ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["polyline"]}," field that contains the encoded geometry of the route. This is useful for displaying the route on a frontend map or storing it efficiently."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POLYLINE"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array of your TraceRoute request."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"POLYLINE\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 150,\n      \"width\": 180,\n      \"length\": 420,\n      \"weight\": 1400\n    }\n  },\n  \"options\": [\"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242190000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n        {\n          \"lon\": 7.06668,\n          \"lat\": 43.6162\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Returns a polyline field in the response for efficient geometry rendering on maps."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_revgeoPostalAddress_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-revgeo_postal_address--return-postal-addresses-of-matched-coordinates","__idx":7},"children":["🧩 REVGEO_POSTAL_ADDRESS – Return postal addresses of matched coordinates"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to retrieve the postal address (street name, number, city, zip code, etc.) corresponding to each matched GPS coordinate in your TraceRoute request."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When this option is enabled, the API performs a reverse geocoding on each matched coordinate and returns detailed postal address information. This is useful for displaying contextual data like start and end addresses or logging route steps."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["REVGEO_POSTAL_ADDRESS"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in your TraceRoute request."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"REVGEO_POSTAL_ADDRESS\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 160,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1300\n    }\n  },\n  \"options\": [\"REVGEO_POSTAL_ADDRESS\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"routingInstructions\": [\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 389,\n          \"duration\": 37,\n          \"fromName\": \"Route des Lucioles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07047,\n            \"lat\": 43.61731\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"Carrefour du Golf\",\n          \"toOn\": \"Carrefour du Golf\",\n          \"textDist\": \"At 389 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 49,\n          \"duration\": 11,\n          \"fromName\": \"Carrefour du Golf\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07093,\n            \"lat\": 43.61741\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 49 meters\",\n          \"text\": \"From Route des Lucioles at roundabout take 2nd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 223,\n          \"duration\": 20,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07357,\n            \"lat\": 43.61703\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"Carrefour Saint-Philippe\",\n          \"toOn\": \"Carrefour Saint-Philippe\",\n          \"textDist\": \"At 223 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 104,\n          \"duration\": 29,\n          \"fromName\": \"Carrefour Saint-Philippe\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07463,\n            \"lat\": 43.61674\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 104 meters\",\n          \"text\": \"From Route des Colles at roundabout take 3rd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 513,\n          \"duration\": 39,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08045,\n            \"lat\": 43.61509\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"Carrefour des Chappes\",\n          \"toOn\": \"Carrefour des Chappes\",\n          \"textDist\": \"At 513 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 8,\n          \"duration\": 3,\n          \"fromName\": \"Carrefour des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08053,\n            \"lat\": 43.61505\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 8 meters\",\n          \"text\": \"From Route des Colles at roundabout take 1st exit on D535\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 361,\n          \"duration\": 26,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07845,\n            \"lat\": 43.61221\n          },\n          \"roundAboutExitNumber\": 4,\n          \"textDist\": \"At 361 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 122,\n          \"duration\": 20,\n          \"manoeuvre\": \"BEAR_RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07869,\n            \"lat\": 43.61212\n          },\n          \"roundAboutExitNumber\": 4,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 122 meters\",\n          \"text\": \"From Route des Chappes at roundabout take 4th exit on D535\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 107,\n          \"duration\": 9,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07921,\n            \"lat\": 43.61298\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 107 meters\",\n          \"text\": \"From Route des Chappes make a right turn on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 246,\n          \"duration\": 35,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"LEFT\",\n          \"coordinate\": {\n            \"lon\": 7.08151,\n            \"lat\": 43.61153\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 246 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin make a left turn\"\n        },\n        {\n          \"type\": \"STOP\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 29,\n          \"duration\": 12,\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08177,\n            \"lat\": 43.6117\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 29 meters\",\n          \"text\": \"Destination reached\"\n        }\n      ],\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Returns a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["postalAddress"]}," field for each matched coordinate in the response, useful for displaying or logging real-world addresses."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_routeSheet_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-routesheet--return-a-human-readable-route-sheet","__idx":8},"children":["🧩 ROUTESHEET – Return a human-readable route sheet"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to generate a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["turn-by-turn route sheet"]}," (like a roadbook) summarizing the key maneuvers of the itinerary, including distance, direction, and road names."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When this option is enabled, the API returns a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["routeSheet"]}," field in the response. It contains a ",{"$$mdtype":"Tag","name":"em","attributes":{},"children":["list of driving instructions"]},"* extracted from the route geometry and enriched with street names, distances, and directions (e.g., \"Turn right onto Avenue de la République\")."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This is useful for:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["displaying navigation steps to the user"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["exporting simplified navigation instructions"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["integrating with map-based route viewers"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ROUTESHEET"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in your TraceRoute request."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"ROUTESHEET\", \"POLYLINE\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 160,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1300\n    }\n  },\n  \"options\": [\"ROUTESHEET\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242188000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"routingInstructions\": [\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 389,\n          \"duration\": 37,\n          \"fromName\": \"Route des Lucioles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07047,\n            \"lat\": 43.61731\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"Carrefour du Golf\",\n          \"toOn\": \"Carrefour du Golf\",\n          \"textDist\": \"At 389 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 49,\n          \"duration\": 11,\n          \"fromName\": \"Carrefour du Golf\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07093,\n            \"lat\": 43.61741\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 49 meters\",\n          \"text\": \"From Route des Lucioles at roundabout take 2nd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 223,\n          \"duration\": 20,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07357,\n            \"lat\": 43.61703\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"Carrefour Saint-Philippe\",\n          \"toOn\": \"Carrefour Saint-Philippe\",\n          \"textDist\": \"At 223 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 104,\n          \"duration\": 29,\n          \"fromName\": \"Carrefour Saint-Philippe\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07463,\n            \"lat\": 43.61674\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 104 meters\",\n          \"text\": \"From Route des Colles at roundabout take 3rd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 513,\n          \"duration\": 39,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08045,\n            \"lat\": 43.61509\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"Carrefour des Chappes\",\n          \"toOn\": \"Carrefour des Chappes\",\n          \"textDist\": \"At 513 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 8,\n          \"duration\": 3,\n          \"fromName\": \"Carrefour des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08053,\n            \"lat\": 43.61505\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 8 meters\",\n          \"text\": \"From Route des Colles at roundabout take 1st exit on D535\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 361,\n          \"duration\": 26,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07845,\n            \"lat\": 43.61221\n          },\n          \"roundAboutExitNumber\": 4,\n          \"textDist\": \"At 361 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 122,\n          \"duration\": 20,\n          \"manoeuvre\": \"BEAR_RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07869,\n            \"lat\": 43.61212\n          },\n          \"roundAboutExitNumber\": 4,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 122 meters\",\n          \"text\": \"From Route des Chappes at roundabout take 4th exit on D535\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 107,\n          \"duration\": 9,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07921,\n            \"lat\": 43.61298\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 107 meters\",\n          \"text\": \"From Route des Chappes make a right turn on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 246,\n          \"duration\": 35,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"LEFT\",\n          \"coordinate\": {\n            \"lon\": 7.08151,\n            \"lat\": 43.61153\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 246 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin make a left turn\"\n        },\n        {\n          \"type\": \"STOP\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 29,\n          \"duration\": 12,\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08177,\n            \"lat\": 43.6117\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 29 meters\",\n          \"text\": \"Destination reached\"\n        }\n      ],\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Returns a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["routeSheet"]}," list containing detailed instructions like \"Turn left\", \"Continue on Rue de Rivoli\", etc., for each maneuver."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_routeSheet_Verbose_high_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-routesheet_verbose_high--enable-highly-detailed-route-sheet","__idx":9},"children":["🧩 ROUTESHEET_VERBOSE_HIGH – Enable highly detailed route sheet"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You need a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["very detailed route sheet"]}," with extra information for each instruction (e.g., road classifications, more descriptive steps, segment info). Ideal for:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["advanced navigation systems,"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["printing exhaustive roadbooks,"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["precise driving analysis."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This option increases the verbosity of the route sheet returned when ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ROUTESHEET"]}," is active. Each instruction includes ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["additional metadata"]},", such as:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["functional road class (FRC),"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["road type,"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["extended descriptions."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This option is only effective when ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ROUTESHEET"]}," is already enabled."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add both ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ROUTESHEET"]}," and ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ROUTESHEET_VERBOSE_HIGH"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in your request."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"ROUTESHEET\", \"ROUTESHEET_VERBOSE_HIGH\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 160,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1300\n    }\n  },\n  \"options\": [\"ROUTESHEET\", \"ROUTESHEET_VERBOSE_HIGH\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242188000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"routingInstructions\": [\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 20,\n          \"duration\": 2,\n          \"fromName\": \"Route des Lucioles\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.06627,\n            \"lat\": 43.61621\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Route des Lucioles\",\n          \"toOn\": \"Route des Lucioles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 20 meters\",\n          \"text\": \"From Route des Lucioles straight on Route des Lucioles\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 33,\n          \"duration\": 4,\n          \"fromName\": \"Route des Lucioles\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.06668,\n            \"lat\": 43.6162\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Route des Lucioles\",\n          \"toOn\": \"Route des Lucioles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 33 meters\",\n          \"text\": \"From Route des Lucioles straight on Route des Lucioles\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 336,\n          \"duration\": 31,\n          \"fromName\": \"Route des Lucioles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07047,\n            \"lat\": 43.61731\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"Carrefour du Golf\",\n          \"toOn\": \"Carrefour du Golf\",\n          \"textDist\": \"At 336 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 49,\n          \"duration\": 11,\n          \"fromName\": \"Carrefour du Golf\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07093,\n            \"lat\": 43.61741\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 49 meters\",\n          \"text\": \"From Route des Lucioles at roundabout take 2nd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 223,\n          \"duration\": 20,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07357,\n            \"lat\": 43.61703\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"Carrefour Saint-Philippe\",\n          \"toOn\": \"Carrefour Saint-Philippe\",\n          \"textDist\": \"At 223 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 104,\n          \"duration\": 29,\n          \"fromName\": \"Carrefour Saint-Philippe\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07463,\n            \"lat\": 43.61674\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 104 meters\",\n          \"text\": \"From Route des Colles at roundabout take 3rd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 513,\n          \"duration\": 39,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08045,\n            \"lat\": 43.61509\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"Carrefour des Chappes\",\n          \"toOn\": \"Carrefour des Chappes\",\n          \"textDist\": \"At 513 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 8,\n          \"duration\": 3,\n          \"fromName\": \"Carrefour des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08053,\n            \"lat\": 43.61505\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 8 meters\",\n          \"text\": \"From Route des Colles at roundabout take 1st exit on D535\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 361,\n          \"duration\": 26,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07845,\n            \"lat\": 43.61221\n          },\n          \"roundAboutExitNumber\": 4,\n          \"textDist\": \"At 361 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 122,\n          \"duration\": 20,\n          \"manoeuvre\": \"BEAR_RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07869,\n            \"lat\": 43.61212\n          },\n          \"roundAboutExitNumber\": 4,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 122 meters\",\n          \"text\": \"From Route des Chappes at roundabout take 4th exit on D535\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 107,\n          \"duration\": 9,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07921,\n            \"lat\": 43.61298\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 107 meters\",\n          \"text\": \"From Route des Chappes make a right turn on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 109,\n          \"duration\": 15,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08018,\n            \"lat\": 43.61229\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 109 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin straight on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 27,\n          \"duration\": 4,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08043,\n            \"lat\": 43.61213\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 27 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin straight on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 12,\n          \"duration\": 3,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08055,\n            \"lat\": 43.61206\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 12 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin straight on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 65,\n          \"duration\": 9,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08118,\n            \"lat\": 43.61169\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 65 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin straight on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 33,\n          \"duration\": 4,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"LEFT\",\n          \"coordinate\": {\n            \"lon\": 7.08151,\n            \"lat\": 43.61153\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 33 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin make a left turn\"\n        },\n        {\n          \"type\": \"STOP\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 29,\n          \"duration\": 12,\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08177,\n            \"lat\": 43.6117\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 29 meters\",\n          \"text\": \"Destination reached\"\n        }\n      ],\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Enhances the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["routeSheet"]}," with advanced descriptive fields such as road class, road type, and enriched maneuver labels."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_routeSheet_Verbose_Low_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-routesheet_verbose_low--low-verbosity-for-the-route-sheet","__idx":10},"children":["🧩 ROUTESHEET_VERBOSE_LOW – Low verbosity for the route sheet"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to retrieve a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["simple and minimal route sheet"]}," for clear and concise navigation instructions. This is suitable for:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["basic navigation apps,"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["user interfaces with limited space,"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["users who only need turn-by-turn instructions without technical details."]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When this option is enabled:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["The route sheet includes only essential information (e.g., maneuver type, road name, distance)."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["It excludes verbose metadata like road classification (FRC), road type, and internal navigation codes."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["This is the default verbosity level if none is explicitly defined."]}]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ If you specify ROUTESHEET in the options and don’t add a verbosity level, this one is applied automatically."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add the following options to your request:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"ROUTESHEET\", \"ROUTESHEET_VERBOSE_LOW\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 160,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1300\n    }\n  },\n  \"options\": [\"ROUTESHEET\", \"ROUTESHEET_VERBOSE_LOW\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242188000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["*",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"routingInstructions\": [\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 389,\n          \"duration\": 37,\n          \"fromName\": \"Route des Lucioles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07047,\n            \"lat\": 43.61731\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"Carrefour du Golf\",\n          \"toOn\": \"Carrefour du Golf\",\n          \"textDist\": \"At 389 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 49,\n          \"duration\": 11,\n          \"fromName\": \"Carrefour du Golf\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07093,\n            \"lat\": 43.61741\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 49 meters\",\n          \"text\": \"From Route des Lucioles at roundabout take 2nd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 223,\n          \"duration\": 20,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07357,\n            \"lat\": 43.61703\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"Carrefour Saint-Philippe\",\n          \"toOn\": \"Carrefour Saint-Philippe\",\n          \"textDist\": \"At 223 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 104,\n          \"duration\": 29,\n          \"fromName\": \"Carrefour Saint-Philippe\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07463,\n            \"lat\": 43.61674\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 104 meters\",\n          \"text\": \"From Route des Colles at roundabout take 3rd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 513,\n          \"duration\": 39,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08045,\n            \"lat\": 43.61509\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"Carrefour des Chappes\",\n          \"toOn\": \"Carrefour des Chappes\",\n          \"textDist\": \"At 513 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 8,\n          \"duration\": 3,\n          \"fromName\": \"Carrefour des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08053,\n            \"lat\": 43.61505\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 8 meters\",\n          \"text\": \"From Route des Colles at roundabout take 1st exit on D535\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 361,\n          \"duration\": 26,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07845,\n            \"lat\": 43.61221\n          },\n          \"roundAboutExitNumber\": 4,\n          \"textDist\": \"At 361 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 122,\n          \"duration\": 20,\n          \"manoeuvre\": \"BEAR_RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07869,\n            \"lat\": 43.61212\n          },\n          \"roundAboutExitNumber\": 4,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 122 meters\",\n          \"text\": \"From Route des Chappes at roundabout take 4th exit on D535\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 107,\n          \"duration\": 9,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07921,\n            \"lat\": 43.61298\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 107 meters\",\n          \"text\": \"From Route des Chappes make a right turn on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 246,\n          \"duration\": 35,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"LEFT\",\n          \"coordinate\": {\n            \"lon\": 7.08151,\n            \"lat\": 43.61153\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 246 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin make a left turn\"\n        },\n        {\n          \"type\": \"STOP\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 29,\n          \"duration\": 12,\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08177,\n            \"lat\": 43.6117\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 29 meters\",\n          \"text\": \"Destination reached\"\n        }\n      ],\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Generates a clean, human-readable route sheet focused on navigation instructions only."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_routeSheet_Verbose_Medium_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-routesheet_verbose_medium--medium-verbosity-for-the-route-sheet","__idx":11},"children":["🧩 ROUTESHEET_VERBOSE_MEDIUM – Medium verbosity for the route sheet"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want a ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["moderately detailed route sheet"]}," that includes clear navigation instructions along with extra metadata such as road types and classifications—more informative than the low verbosity level, but less technical than high verbosity."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This is suitable for:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["advanced user interfaces,"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["route validation and diagnostics,"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["in-vehicle systems needing contextual navigation data."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When this option is enabled:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["The route sheet includes:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["road type"]}," (motorway, secondary road, etc.),"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["functional road class (FRC)"]},","]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["maneuver type"]},","]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["distance and duration"]}," per step."]}]}]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["It strikes a balance between clarity and technical detail."]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["⚠️ This option ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["must be used together"]}," with ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["ROUTESHEET"]},"."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add both of the following options in your request:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"ROUTESHEET\", \"ROUTESHEET_VERBOSE_MEDIUM\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 160,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1300\n    }\n  },\n  \"options\": [\"ROUTESHEET\", \"ROUTESHEET_VERBOSE_MEDIUM\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242188000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Reponse"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"routingInstructions\": [\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 389,\n          \"duration\": 37,\n          \"fromName\": \"Route des Lucioles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07047,\n            \"lat\": 43.61731\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"Carrefour du Golf\",\n          \"toOn\": \"Carrefour du Golf\",\n          \"textDist\": \"At 389 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 49,\n          \"duration\": 11,\n          \"fromName\": \"Carrefour du Golf\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07093,\n            \"lat\": 43.61741\n          },\n          \"roundAboutExitNumber\": 2,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 49 meters\",\n          \"text\": \"From Route des Lucioles at roundabout take 2nd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 223,\n          \"duration\": 20,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07357,\n            \"lat\": 43.61703\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"Carrefour Saint-Philippe\",\n          \"toOn\": \"Carrefour Saint-Philippe\",\n          \"textDist\": \"At 223 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 104,\n          \"duration\": 29,\n          \"fromName\": \"Carrefour Saint-Philippe\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07463,\n            \"lat\": 43.61674\n          },\n          \"roundAboutExitNumber\": 3,\n          \"toName\": \"D504\",\n          \"toOn\": \"Route des Colles\",\n          \"toRn\": \"D504\",\n          \"textDist\": \"At 104 meters\",\n          \"text\": \"From Route des Colles at roundabout take 3rd exit on D504\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 513,\n          \"duration\": 39,\n          \"fromName\": \"Route des Colles\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08045,\n            \"lat\": 43.61509\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"Carrefour des Chappes\",\n          \"toOn\": \"Carrefour des Chappes\",\n          \"textDist\": \"At 513 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 8,\n          \"duration\": 3,\n          \"fromName\": \"Carrefour des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08053,\n            \"lat\": 43.61505\n          },\n          \"roundAboutExitNumber\": 1,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 8 meters\",\n          \"text\": \"From Route des Colles at roundabout take 1st exit on D535\"\n        },\n        {\n          \"type\": \"ENTER_ROUNDABOUT\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 361,\n          \"duration\": 26,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07845,\n            \"lat\": 43.61221\n          },\n          \"roundAboutExitNumber\": 4,\n          \"textDist\": \"At 361 meters\"\n        },\n        {\n          \"type\": \"EXIT_ROUNDABOUT\",\n          \"geoElementType\": \"ROUNDABOUT\",\n          \"length\": 122,\n          \"duration\": 20,\n          \"manoeuvre\": \"BEAR_RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07869,\n            \"lat\": 43.61212\n          },\n          \"roundAboutExitNumber\": 4,\n          \"toName\": \"D535\",\n          \"toOn\": \"Route des Chappes\",\n          \"toRn\": \"D535\",\n          \"textDist\": \"At 122 meters\",\n          \"text\": \"From Route des Chappes at roundabout take 4th exit on D535\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 107,\n          \"duration\": 9,\n          \"fromName\": \"Route des Chappes\",\n          \"manoeuvre\": \"RIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.07921,\n            \"lat\": 43.61298\n          },\n          \"roundAboutExitNumber\": 0,\n          \"toName\": \"Allée Charles-Victor Naudin\",\n          \"toOn\": \"Allée Charles-Victor Naudin\",\n          \"textDist\": \"At 107 meters\",\n          \"text\": \"From Route des Chappes make a right turn on Allée Charles-Victor Naudin\"\n        },\n        {\n          \"type\": \"FOLLOW\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 246,\n          \"duration\": 35,\n          \"fromName\": \"Allée Charles-Victor Naudin\",\n          \"manoeuvre\": \"LEFT\",\n          \"coordinate\": {\n            \"lon\": 7.08151,\n            \"lat\": 43.61153\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 246 meters\",\n          \"text\": \"From Allée Charles-Victor Naudin make a left turn\"\n        },\n        {\n          \"type\": \"STOP\",\n          \"geoElementType\": \"ROAD\",\n          \"length\": 29,\n          \"duration\": 12,\n          \"manoeuvre\": \"STRAIGHT\",\n          \"coordinate\": {\n            \"lon\": 7.08177,\n            \"lat\": 43.6117\n          },\n          \"roundAboutExitNumber\": 0,\n          \"textDist\": \"At 29 meters\",\n          \"text\": \"Destination reached\"\n        }\n      ],\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Returns a route sheet with enriched context: maneuver types, functional road class, road types, and timing data."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_segmentIDS_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-segmentids--return-segment-ids-of-the-route","__idx":12},"children":["🧩 SEGMENTIDS – Return segment IDs of the route"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to retrieve the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["internal segment identifiers"]}," used by the map engine to represent each portion of the route. This is helpful for:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Debugging or analytics,"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Matching against your own map database,"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Post-processing or route indexing,"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Building segment-based routing logic or overlays."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When enabled, the response will contain a list of ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["segment IDs"]}," (",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["segmentIds"]}," array) corresponding to each portion of the itinerary."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Each ID is a unique reference for a map segment used during route calculation."]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["⚠️ These IDs are ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["internal and opaque"]},"; they are useful only in the context of advanced features or integration with compatible map data."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["SEGMENTIDS"]}," option to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in your routing request:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"SEGMENTIDS\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 160,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1300\n    }\n  },\n  \"options\": [\"SEGMENTIDS\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242188000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"segmentIds\": [\n        836108994,\n        836108995,\n        709801757,\n        1381983248,\n        1381983249,\n        836932006,\n        836932007,\n        1382514048,\n        1382514049,\n        938906463,\n        938906464,\n        537879459,\n        1259289174,\n        1259289175,\n        1223449855,\n        1223449854,\n        1340297066,\n        1340297065,\n        58347121,\n        933189298,\n        1170567037,\n        1170567036,\n        1383407095,\n        1383407096,\n        836109013,\n        836825986,\n        836825985,\n        549672767,\n        1223449178,\n        1223449177,\n        836109014,\n        833135496,\n        836109019,\n        1214585752,\n        1214585751,\n        972276772,\n        1223455248,\n        1223455247,\n        835410520,\n        836108985,\n        836108984,\n        709801731,\n        1026746968,\n        1026746967,\n        58436098,\n        58436107,\n        836108986,\n        836108987,\n        65389733,\n        1339069509,\n        1339069508,\n        1338076945,\n        1338076953,\n        1338076952,\n        1338076951\n      ]\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Returns a list of segment IDs used for each portion of the route, available in the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["segmentIds"]}," field of the response."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_used_destinations_off_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-used_destinations_off--disable-used-destinations-list-in-response","__idx":13},"children":["🧩 USED_DESTINATIONS_OFF – Disable used destinations list in response"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["reduce the size"]}," of the response or you don't need the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["usedDestinations"]}," field, which normally lists the destinations effectively matched to the route."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Useful when:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You're only interested in the route geometry or travel times."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You want to optimize bandwidth for mobile or embedded devices."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You're sending a large number of coordinates and don’t want the server to echo them back."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["By default, the TraceRoute response includes a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["usedDestinations"]}," array that confirms which coordinates were used in route computation after internal simplification."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["USED_DESTINATIONS_OFF"]}," option is added, this list is omitted from the response entirely."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["USED_DESTINATIONS_OFF"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array of your request."]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"USED_DESTINATIONS_OFF\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 160,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1300\n    }\n  },\n  \"options\": [\"USED_DESTINATIONS_OFF\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242188000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n        {\n          \"lon\": 7.06668,\n          \"lat\": 43.6162\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"a","attributes":{"name":"traceroute_waypoints_tutorial"},"children":[]}]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-waypoints--return-waypoints-of-the-itinerary","__idx":14},"children":["🧩 WAYPOINTS – Return waypoints of the itinerary"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want to ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["reconstruct the route later"]}," or send it to another device/server for ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["precise reproduction"]}," of the calculated path."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Useful when:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You want to cache and reuse a route."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You need to analyze key points of the route, including geometry and transitions."]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["You plan to visualize or simulate the route elsewhere (e.g. navigation system, custom playback)."]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When enabled, the API returns a ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["waypoints"]}," array containing critical points used to form the computed route. Each waypoint includes metadata such as:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Coordinates"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Distance from origin"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Duration"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Off-road info (if enabled via ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["OFFROADS"]},")"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Segment linkage"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["These are minimal yet sufficient to reproduce the full route on another system."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["How to enable"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]}," to the ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["options"]}," array in your routing request:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"WAYPOINTS\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["📦 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\",\n    \"routingVehicleFeature\": {\n      \"height\": 160,\n      \"width\": 180,\n      \"length\": 450,\n      \"weight\": 1300\n    }\n  },\n  \"options\": [\"WAYPOINTS\", \"POLYLINE\"],\n  \"destinations\": [\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.066,\n        \"lat\": 43.616,\n        \"heading\": 17.6,\n        \"speed\": 23.1,\n        \"time\": 1396241966000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0664,\n        \"lat\": 43.6162,\n        \"heading\": 95.0,\n        \"speed\": 29.3,\n        \"time\": 1396241972000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0786,\n        \"lat\": 43.6153,\n        \"heading\": 119.0,\n        \"speed\": 61.9,\n        \"time\": 1396242062000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0805,\n        \"lat\": 43.6147,\n        \"heading\": 200.9,\n        \"speed\": 50.6,\n        \"time\": 1396242077000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0785,\n        \"lat\": 43.6117,\n        \"heading\": 115.8,\n        \"speed\": 38.1,\n        \"time\": 1396242104000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0787,\n        \"lat\": 43.6118,\n        \"heading\": 15.6,\n        \"speed\": 26.0,\n        \"time\": 1396242107000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0793,\n        \"lat\": 43.6128,\n        \"heading\": 76.0,\n        \"speed\": 26.6,\n        \"time\": 1396242128000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0814,\n        \"lat\": 43.6116,\n        \"heading\": 269.9,\n        \"speed\": 5.6,\n        \"time\": 1396242172000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0811,\n        \"lat\": 43.6117,\n        \"heading\": 338.7,\n        \"speed\": 7.5,\n        \"time\": 1396242182000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0812,\n        \"lat\": 43.6119,\n        \"heading\": 47.3,\n        \"speed\": 14.9,\n        \"time\": 1396242188000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0815,\n        \"lat\": 43.6119,\n        \"heading\": 127.1,\n        \"speed\": 8.5,\n        \"time\": 1396242198000,\n        \"sat\": 11\n      }\n    },\n    {\n      \"coordinateSat\": {\n        \"lon\": 7.0816,\n        \"lat\": 43.6118,\n        \"heading\": 0.0,\n        \"speed\": 0.0,\n        \"time\": 1396242288000,\n        \"sat\": 11\n      }\n    }\n  ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n"},"children":[]},{"$$mdtype":"Tag","name":"blockquote","attributes":{},"children":[{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ Returns minimal but complete waypoint list to reconstruct the route on another device."]}]},{"$$mdtype":"Tag","name":"hr","attributes":{},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"-waypoints_polyline--include-waypoint-coordinates-in-the-polyline","__idx":15},"children":["🧭 WAYPOINTS_POLYLINE – Include Waypoint Coordinates in the Polyline"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Returns the polyline of the route, enhanced with the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["waypoint coordinates"]},"."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["✅ ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Use case"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["You want a single polyline that contains ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["both the route geometry and the precise waypoints"]}," used in the computation."," ","This is useful to:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Visualize or export the route ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["including key GPS points"]}]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Perform replay or synchronization between systems"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["Ensure all important locations (e.g., stops) are reflected in the geometry"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["💡 ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["What it does"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["When this option is enabled, the API appends the ",{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["waypoints"]}," directly in the encoded polyline response."," ","Waypoints include additional attributes such as time, heading, and speed, if provided."]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["This is especially relevant if you combine:"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS"]}," → returns the full list of waypoint objects"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["WAYPOINTS_POLYLINE"]}," → returns the geometry with those waypoints inside the polyline"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["🔧 How to enable"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["Add the following option to your request:"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"\"options\": [\"WAYPOINTS_POLYLINE\"]\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Example"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"routingVehicleProfile\": {\n    \"transportMode\": \"CAR\"\n  },\n  \"options\": [\"WAYPOINTS\", \"WAYPOINTS_POLYLINE\"],\n  \"destinations\" : [\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.066,\n                \"lat\" : 43.616,\n                \"heading\" : 17.6,\n                \"speed\" : 23.1,\n                \"time\" : 1396241966000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0664,\n                \"lat\" : 43.6162,\n                \"heading\" : 95.0,\n                \"speed\" : 29.3,\n                \"time\" : 1396241972000,\n                \"sat\" : 11\n            }\n        },\n                {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0786,\n                \"lat\" : 43.6153,\n                \"heading\" : 119.0,\n                \"speed\" : 61.9,\n                \"time\" : 1396242062000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0805,\n                \"lat\" : 43.6147,\n                \"heading\" : 200.9,\n                \"speed\" : 50.6,\n                \"time\" : 1396242077000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0785,\n                \"lat\" : 43.6117,\n                \"heading\" : 115.8,\n                \"speed\" : 38.1,\n                \"time\" : 1396242104000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0787,\n                \"lat\" : 43.6118,\n                \"heading\" : 15.6,\n                \"speed\" : 26.0,\n                \"time\" : 1396242107000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0793,\n                \"lat\" : 43.6128,\n                \"heading\" : 76.0,\n                \"speed\" : 26.6,\n                \"time\" : 1396242128000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0814,\n                \"lat\" : 43.6116,\n                \"heading\" : 269.9,\n                \"speed\" : 5.6,\n                \"time\" : 1396242172000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0811,\n                \"lat\" : 43.6117,\n                \"heading\" : 338.7,\n                \"speed\" : 7.5,\n                \"time\" : 1396242182000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0812,\n                \"lat\" : 43.6119,\n                \"heading\" : 47.3,\n                \"speed\" : 14.9,\n                \"time\" : 1396241966000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0815,\n                \"lat\" : 43.6119,\n                \"heading\" : 127.1,\n                \"speed\" : 8.5,\n                \"time\" : 1396242198000,\n                \"sat\" : 11\n            }\n        },\n        {\n            \"coordinateSat\" : {\n                \"lon\" : 7.0816,\n                \"lat\" : 43.6118,\n                \"heading\" : 0.0,\n                \"speed\" : 0.0,\n                \"time\" : 1396242288000,\n                \"sat\" : 11\n            }\n        }\n    ]\n}\n"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":[{"$$mdtype":"Tag","name":"strong","attributes":{},"children":["Response"]}]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"header":{"controls":{"copy":{}}},"source":"{\n  \"usedDestinations\": [\n    {\n      \"inputOrder\": 0,\n      \"used\": true,\n      \"usedOrder\": 0,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.06602,\n        \"lat\": 43.61618\n      },\n      \"confidenceValue\": 0.07689281992526473,\n      \"distanceFromRequest\": 20.1,\n      \"polylineIndex\": -1,\n      \"duration\": -1,\n      \"length\": -1\n    },\n    {\n      \"inputOrder\": 1,\n      \"used\": true,\n      \"usedOrder\": 1,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.066398283397998,\n        \"lat\": 43.616205\n      },\n      \"confidenceValue\": 0.09921131156872807,\n      \"distanceFromRequest\": 0.56,\n      \"polylineIndex\": -1,\n      \"duration\": 4,\n      \"length\": 31\n    },\n    {\n      \"inputOrder\": 2,\n      \"used\": true,\n      \"usedOrder\": 2,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.078628713869563,\n        \"lat\": 43.61534125\n      },\n      \"confidenceValue\": 0.5117017827481006,\n      \"distanceFromRequest\": 5.14,\n      \"polylineIndex\": -1,\n      \"duration\": 121,\n      \"length\": 1128\n    },\n    {\n      \"inputOrder\": 3,\n      \"used\": true,\n      \"usedOrder\": 3,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.080403748959592,\n        \"lat\": 43.6147275\n      },\n      \"confidenceValue\": 0.22820475819113992,\n      \"distanceFromRequest\": 8.34,\n      \"polylineIndex\": -1,\n      \"duration\": 143,\n      \"length\": 1324\n    },\n    {\n      \"inputOrder\": 4,\n      \"used\": true,\n      \"usedOrder\": 4,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07845,\n        \"lat\": 43.61179\n      },\n      \"confidenceValue\": 0.1539186659438396,\n      \"distanceFromRequest\": 10.8,\n      \"polylineIndex\": -1,\n      \"duration\": 179,\n      \"length\": 1718\n    },\n    {\n      \"inputOrder\": 5,\n      \"used\": true,\n      \"usedOrder\": 5,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.07866,\n        \"lat\": 43.61185\n      },\n      \"confidenceValue\": 0.16108117941441358,\n      \"distanceFromRequest\": 6.43,\n      \"polylineIndex\": -1,\n      \"duration\": 181,\n      \"length\": 1737\n    },\n    {\n      \"inputOrder\": 6,\n      \"used\": true,\n      \"usedOrder\": 6,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.079378967392794,\n        \"lat\": 43.6128575\n      },\n      \"confidenceValue\": 0.27133317856160843,\n      \"distanceFromRequest\": 9.03,\n      \"polylineIndex\": -1,\n      \"duration\": 199,\n      \"length\": 1895\n    },\n    {\n      \"inputOrder\": 7,\n      \"used\": true,\n      \"usedOrder\": 7,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1558036422356276,\n      \"distanceFromRequest\": 20.37,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 8,\n      \"used\": true,\n      \"usedOrder\": 8,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.15467894682254785,\n      \"distanceFromRequest\": 6.54,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 9,\n      \"used\": true,\n      \"usedOrder\": 9,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.08118,\n        \"lat\": 43.61169\n      },\n      \"confidenceValue\": 0.1844632357817026,\n      \"distanceFromRequest\": 23.43,\n      \"polylineIndex\": -1,\n      \"duration\": 226,\n      \"length\": 2090\n    },\n    {\n      \"inputOrder\": 10,\n      \"used\": true,\n      \"usedOrder\": 10,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081303332134546,\n        \"lat\": 43.61164\n      },\n      \"confidenceValue\": 0.1586887555888732,\n      \"distanceFromRequest\": 33,\n      \"polylineIndex\": -1,\n      \"duration\": 229,\n      \"length\": 2102\n    },\n    {\n      \"inputOrder\": 11,\n      \"used\": true,\n      \"usedOrder\": 11,\n      \"matchedCoordinateGps\": {\n        \"lon\": 7.081771510364167,\n        \"lat\": 43.6116975\n      },\n      \"confidenceValue\": 0.18750892219842968,\n      \"distanceFromRequest\": 17.92,\n      \"polylineIndex\": -1,\n      \"duration\": 243,\n      \"length\": 2151\n    }\n  ],\n  \"routingRoutes\": [\n    {\n      \"length\": 2151,\n      \"duration\": 243,\n      \"trafficDelay\": 0,\n      \"averageSpeed\": 31.866667,\n      \"maximumSpeed\": 0,\n      \"startUTurnThreshold\": 3000,\n      \"boundingBox\": {\n        \"minLon\": 7.06602,\n        \"minLat\": 43.61153,\n        \"maxLon\": 7.081771510364167,\n        \"maxLat\": 43.6175\n      },\n      \"startStopInfo\": {\n        \"start\": {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        \"stop\": {\n          \"lon\": 7.08177,\n          \"lat\": 43.6117\n        },\n        \"distanceFirstMatched\": 0,\n        \"distanceLastMatched\": 0.28,\n        \"interDests\": null\n      },\n      \"polyline\": [\n        {\n          \"lon\": 7.06602,\n          \"lat\": 43.61618\n        },\n        {\n          \"lon\": 7.06627,\n          \"lat\": 43.61621\n        },\n"},"children":[]}]},"headings":[{"value":"🛠️ TraceRoute – options Parameter","id":"️-traceroute--options-parameter","depth":1},{"value":"⚡ ENERGY_CONSUMPTION – Estimate energy usage along the route","id":"-energy_consumption--estimate-energy-usage-along-the-route","depth":2},{"value":"🧭 NO_MINIMAL_WAYPOINTS – Disable minimal waypoint filtering","id":"-no_minimal_waypoints--disable-minimal-waypoint-filtering","depth":2},{"value":"🛤 OFFROADS – Return off-road polylines in waypoints","id":"-offroads--return-off-road-polylines-in-waypoints","depth":2},{"value":"🧪 OFFROADS_RAWDATA – Include raw map attributes for off-road segments","id":"-offroads_rawdata--include-raw-map-attributes-for-off-road-segments","depth":2},{"value":"🛰️ OPENLR – Encode the route geometry in OpenLR format","id":"️-openlr--encode-the-route-geometry-in-openlr-format","depth":2},{"value":"🧩 POLYLINE – Return the route geometry as a polyline","id":"-polyline--return-the-route-geometry-as-a-polyline","depth":2},{"value":"🧩 REVGEO_POSTAL_ADDRESS – Return postal addresses of matched coordinates","id":"-revgeo_postal_address--return-postal-addresses-of-matched-coordinates","depth":2},{"value":"🧩 ROUTESHEET – Return a human-readable route sheet","id":"-routesheet--return-a-human-readable-route-sheet","depth":2},{"value":"🧩 ROUTESHEET_VERBOSE_HIGH – Enable highly detailed route sheet","id":"-routesheet_verbose_high--enable-highly-detailed-route-sheet","depth":2},{"value":"🧩 ROUTESHEET_VERBOSE_LOW – Low verbosity for the route sheet","id":"-routesheet_verbose_low--low-verbosity-for-the-route-sheet","depth":2},{"value":"🧩 ROUTESHEET_VERBOSE_MEDIUM – Medium verbosity for the route sheet","id":"-routesheet_verbose_medium--medium-verbosity-for-the-route-sheet","depth":2},{"value":"🧩 SEGMENTIDS – Return segment IDs of the route","id":"-segmentids--return-segment-ids-of-the-route","depth":2},{"value":"🧩 USED_DESTINATIONS_OFF – Disable used destinations list in response","id":"-used_destinations_off--disable-used-destinations-list-in-response","depth":2},{"value":"🧩 WAYPOINTS – Return waypoints of the itinerary","id":"-waypoints--return-waypoints-of-the-itinerary","depth":2},{"value":"🧭 WAYPOINTS_POLYLINE – Include Waypoint Coordinates in the Polyline","id":"-waypoints_polyline--include-waypoint-coordinates-in-the-polyline","depth":2}],"frontmatter":{"seo":{"title":"🛠️ TraceRoute – options Parameter"}},"lastModified":"2025-09-29T08:13:56.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/api-reference/traceroute/tutorial/traceroute_options","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}