Stay organized with collections
Save and categorize content based on your preferences.
Locations may include modifiers to change how routes are calculated.
Using the Heading Parameter
When you specify waypoints (origin, destination, and intermediates) for a route,
you can specify the direction you want the vehicle to head when it arrives
at each waypoint. You can use this feature to ensures that the vehicle arrives
on the same side of the road as the consumer waiting to be picked up. When you
don't specify a heading, the vehicle can arrive on the wrong side of the road.
Specifying a heading for a waypoint
Heading values are whole numbers that align with the compass directions, and
therefore range from zero to 359. For example, a value of 0 indicates a heading
direction of due North.
Example
The following example demonstrates how to set a
heading
for a waypoint.
When specifying a waypoint, you can request that the route go through whichever
side of the road the waypoint is biased towards by using the side_of_road
parameter.
Example
The following example demonstrates how to set
side_of_road
for a waypoint.
[null,null,["Last updated 2025-08-28 UTC."],[[["\u003cp\u003eWaypoint locations for routes can be modified using \u003ccode\u003eheading\u003c/code\u003e or \u003ccode\u003eside_of_road\u003c/code\u003e parameters to refine route calculations.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eheading\u003c/code\u003e guides vehicle direction at waypoints (0-359 degrees, like compass directions) and is compatible with \u003ccode\u003eDrive\u003c/code\u003e and \u003ccode\u003eTwo-wheeler\u003c/code\u003e travel modes.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eside_of_road\u003c/code\u003e biases the route towards the waypoint's side of the road and is only compatible with the \u003ccode\u003eDrive\u003c/code\u003e travel mode.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eheading\u003c/code\u003e and \u003ccode\u003eside_of_road\u003c/code\u003e parameters cannot be used together for the same location.\u003c/p\u003e\n"]]],["Waypoints in routes can be modified using `heading` or `side_of_road`, but not together. `Heading` defines the vehicle's arrival direction at a waypoint (0-359, like a compass), applicable to `Drive` or `Two-wheeler` modes. `Side_of_road` biases the route towards a specific side of the road at a waypoint and it's only applicable to `Drive` mode. Examples show how to include `heading` and `side_of_road` within waypoint specifications using whole numbers.\n"],null,["# Using Location Modifiers\n\n| **Note:** `heading` and `side_of_road` are incompatible. You may not use them for the same location.\n\nLocations may include modifiers to change how routes are calculated.\n\nUsing the Heading Parameter\n---------------------------\n\nWhen you specify waypoints (origin, destination, and intermediates) for a route,\nyou can specify the direction you want the vehicle to head when it arrives\nat each waypoint. You can use this feature to ensures that the vehicle arrives\non the same side of the road as the consumer waiting to be picked up. When you\ndon't specify a heading, the vehicle can arrive on the wrong side of the road.\n| **Note:** You can set the heading only when using either the `Drive` or `Two-wheeler` travel modes.\n\n### Specifying a heading for a waypoint\n\nHeading values are whole numbers that align with the compass directions, and\ntherefore range from zero to 359. For example, a value of 0 indicates a heading\ndirection of due North.\n\n### Example\n\nThe following example demonstrates how to set a\n[`heading`](/maps/documentation/routes_preferred/reference/rest/Shared.Types/Location#FIELDS.heading)\nfor a waypoint. \n\n```cplint\n{\n \"latLng\": {\n \"latitude\":37.419734,\n \"longitude\":-122.0827784\n },\n \"heading\": 127\n}\n```\n\nUsing the Side of Road Parameter\n--------------------------------\n\nWhen specifying a waypoint, you can request that the route go through whichever\nside of the road the waypoint is biased towards by using the `side_of_road`\nparameter.\n| **Note:** You can set `side_of_road` only when using the `Drive` travel mode.\n\n### Example\n\nThe following example demonstrates how to set\n[`side_of_road`](/maps/documentation/routes_preferred/reference/rest/Shared.Types/Waypoint#FIELDS.side_of_road)\nfor a waypoint. \n\n```cplint\n\"location\": {\n \"latLng\": {\n \"latitude\":37.419734,\n \"longitude\":-122.0827784\n },\n}\n\"sideOfRoad\": true\n```"]]