MapViewModel

class MapViewModel : ViewModel

Used for holding the data of the map fragment.

Constructors

Link copied to clipboard
fun MapViewModel()

Functions

Link copied to clipboard
fun clear()
Link copied to clipboard
open fun <T : Any> getTag(p0: String): T
Link copied to clipboard
open fun onCleared()
Link copied to clipboard
fun selectStation(name: String)

Select station based on the marker title the use has selected in the map fragment. Used to change the selectedStation and visualize information about the selected station.

Link copied to clipboard
open fun <T : Any> setTagIfAbsent(p0: String, p1: T): T

Properties

Link copied to clipboard
var isStationInfoVisible: MutableLiveData<Boolean>
Link copied to clipboard
var selectedStation: MutableLiveData<Station>
Link copied to clipboard
val stations: LiveData<List<Station>>