MapsViewModel

class MapsViewModel : ViewModel

MapsViewModel is a class which is used to handle the operation for MapsActivity

Created at December 26, 2021

Author

Darshan Bhanushali

See also

Constructors

Link copied to clipboard
fun MapsViewModel()

Functions

Link copied to clipboard
fun centerBound(marker: Marker?)

It is used to get center bound of the vehicle position and animate camera of map to marker location.

Link copied to clipboard
fun getCenter(): LatLng?

It is used to get center from Origin to Destination.

Link copied to clipboard
fun getUriFromMarker(marker: Marker): String

It is used to open Google Map from the url and show the route from Origin to Destination through waypoint i.e Location of marker passed in parameter

Link copied to clipboard
fun getVehicleMarkerFromIntent(context: Context, intent: Intent): MarkerOptions

It is used to get the marker by extracting vehicle data from intent.

Link copied to clipboard
fun pushVehicleListInMap(context: Context, mMap: GoogleMap)

It is used to add marker in map for each vehicle in the list.

Link copied to clipboard
fun setVehicleList(vehicleList: MutableList<Vehicle>)

It is used to set the value in vehicleList

Properties

Link copied to clipboard
val filteredVehicleList: MutableLiveData<MutableList<Vehicle>>
Link copied to clipboard
val vehicleList: MutableLiveData<MutableList<Vehicle>>