DeliveryVehicleRestrictedLog

  • The JSON representation includes data on a DeliveryVehicle's remaining journey segments, current route segment, and the endpoint of the current route segment.

  • Remaining journey segments are downsampled and compressed using S2 polylines and presented as an array of VehicleJourneySegmentRestrictedLog objects.

  • The current route segment is represented as a base64-encoded string containing downsampled and compressed S2 polylines of road-snapped segments.

  • The endpoint of the current route segment provides the latitude and longitude coordinates, indicating the final point of the current segment.

Contains restricted data from a DeliveryVehicle.

JSON representation
{
  "remainingVehicleJourneySegments": [
    {
      object (VehicleJourneySegmentRestrictedLog)
    }
  ],
  "currentRouteSegment": string,
  "currentRouteSegmentEndPoint": {
    object (LatLng)
  }
}
Fields
remainingVehicleJourneySegments[]

object (VehicleJourneySegmentRestrictedLog)

The remaining set of journey segments assigned to this Vehicle, downsampled and compressed using S2 polylines.

currentRouteSegment

string (bytes format)

The list of road-snapped route segments in the current route, downsampled and compressed using S2 polylines.

A base64-encoded string.

currentRouteSegmentEndPoint

object (LatLng)

Road snapped lat-lng end point of the current route.