I want to set zoom controls at top right corner of my GoogleMap
which is from SupportMapFragment
.
I have found solutions to get ZoomControls
from MapView
and add it to required position but the problem is I'm not using MapView
.
map.setPadding(leftPadding, topPadding, rightPadding, bottomPadding);
doesn't work for me either as I've other views on my GoogleMap
which I don't want to be calculated everytime I zoom-in/out when I use map.setPadding()
.
I've gone through documentations but couldn't find anything useful to this perspective.
Is there any way to get ZoomControls
from GoogleMap
or SupportMapFragment
?