Values.RouteMatrixEntrySourceThe calculated route matrix containing the results for all pairs of Origins to Destination positions. Each row corresponds to one entry in Origins. Each entry in the row corresponds to the route from that entry in Origins to an entry in Destination positions.
type nonrec t = {distance : DistanceMeters.t option;The total distance of travel for the route.
*)duration : DurationSeconds.t option;The expected duration of travel for the route. Unit: seconds
*)error : RouteMatrixErrorCode.t option;Error code that occurred during calculation of the route.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `Long of DistanceMeters.t ]) list ]