I'm following this document: https://www.mapmyindia.com/api/advanced-maps/android/vector-maps-sdk, and i want to test some differents options like zoom or marker but i don't understand what is mapmyIndiaMap
.
I want to try this in my code:
val cameraPosition = CameraPosition.Builder()
.target(LatLng(22.8978, 77.3245))
.zoom(10.0)
.tilt(0.0)
.build()
mapmyIndiaMap?.cameraPosition = cameraPosition
In my app i can see the map so the only thing i want to know is what kind of val is mapmyIndiaMap
.