Package com.mapbox.navigation.core.replay.history

Types

ReplayEventBase
Link copied to clipboard
interface ReplayEventBase
Base interface event for ReplayEvent.
ReplayEventGetStatus
Link copied to clipboard
data class ReplayEventGetStatus(eventTimestamp: Double) : ReplayEventBase
The getStatus event from history.
ReplayEventLocation
Link copied to clipboard
data class ReplayEventLocation(lon: Double, lat: Double, provider: String?, time: Double?, altitude: Double?, accuracyHorizontal: Double?, bearing: Double?, speed: Double?)
Location data for replaying position.
ReplayEvents
Link copied to clipboard
data class ReplayEvents(events: MutableList<ReplayEventBase>)
Replay event that mapped from ReplayHistoryMapper or created on your own.
ReplayEventsObserver
Link copied to clipboard
fun fun interface ReplayEventsObserver
Used to observe events replayed by the MapboxReplayer
ReplayEventUpdateLocation
Link copied to clipboard
data class ReplayEventUpdateLocation(eventTimestamp: Double, location: ReplayEventLocation) : ReplayEventBase
Location event for replaying device GPS and Fused locations providers
ReplayHistoryEventMapper
Link copied to clipboard
fun fun interface ReplayHistoryEventMapper<Event : HistoryEvent>
Mapper that can be used with ReplayHistoryMapper.
ReplayHistoryMapper
Link copied to clipboard
class ReplayHistoryMapper
Mapper used to convert MapboxHistoryReader events into events replayable by the MapboxReplayer.
ReplaySetNavigationRoute
Link copied to clipboard
class ReplaySetNavigationRoute : ReplayEventBase
Route data for replaying when a route is set.
ReplaySetRoute
Link copied to clipboard
data class ReplaySetRoute(eventTimestamp: Double, route: DirectionsRoute?) : ReplayEventBase
Route data for replaying when a route is set.