blob: 60a5918414676ddd9d883dd7e7f51645380c1cfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.example.androidapp.routing
/**
* The result of an isochrone weather routing computation.
*
* @param path Ordered list of [RoutePoint]s from the start to the destination.
* @param etaMs Estimated Time of Arrival as a UNIX timestamp in milliseconds.
*/
data class IsochroneResult(
val path: List<RoutePoint>,
val etaMs: Long
)
|