MapsActivity

class MapsActivity : AppCompatActivity, OnMapReadyCallback, GoogleMap.OnMarkerClickListener

MapsActivity is used to display a various vehicles from the list to map. It shows vehicle icon at the designated position and display its information. Whenever user select any marker from the map, then it will redirect the camera of map to it's location. Also on click of dialog shown at the top, google will be opened with the route of those direction which includes origin & destination as well.

Created at : December 26, 2021

Author

Darshan Bhanushali

See also

Constructors

Link copied to clipboard
fun MapsActivity()

Functions

Link copied to clipboard
open override fun onMapReady(googleMap: GoogleMap)

Manipulates the map once available. This callback is triggered when the map is ready to be used. This is where we can add markers or lines, add listeners or move the camera. In this case, we just add a marker near Sydney, Australia. If Google Play services is not installed on the device, the user will be prompted to install it inside the SupportMapFragment. This method will only be triggered once the user has installed Google Play services and returned to the app.

Link copied to clipboard
open override fun onMarkerClick(marker: Marker?): Boolean

Used to perform operation on click of any marker in map. i.e Move Camera of map to center bound of the marker and display vehicle information using displayCarInfo(marker : Marker)