I am writing an app on Androd using Kotlin, my app has google maps, I found out that there is already a built-in rendering of the current location using
override fun onMapReady(googleMap: GoogleMap) {
mMap = googleMap
mMap.isMyLocationEnabled = true
}
My question is, is there any way to change the color of the current location marker or even put some kind of picture instead of this blue dot. I just really need to change the blue dot to my own picture and the beam that shows where the user is looking to correct somehow, because it just teleports and I want it to show smoothly as in other applications. If there is any articles or youtube videos would be grateful.