class MatrixRoutingResult
A class that is used to hold information about matrix routing such as summary, origin, and destination.
MatrixRoutingResult(summary: Summary!, statusCode: Int, description: String!, origin: LatLng!, destination: LatLng!, responseStatus: ResponseStatus!)
A constructor that takes information about matrix routing results and assigns it to proper fields. Data assigned here is not persisted. |
fun equals(other: Any?): Boolean |
|
fun getDescription(): String!
Returns the description of the result of the query to the service. |
|
fun getDestination(): LatLng!
Returns the Route destination point. |
|
fun getOrigin(): LatLng!
Returns the Route origin point. |
|
fun getResponseStatus(): ResponseStatus!
Returns the result response. |
|
fun getStatusCode(): Int
Returns the status code of the result of the query to the service. |
|
fun getSummary(): Summary!
Returns the route summary. It contains basic information about the route, e.g., length, travel time, etc. |
|
fun hashCode(): Int |
|
fun toString(): String |