I am working on Geofence in the android google map. I am able to add GeoFence in Map. I need to add a title of Geofence within the circle or bottom of the circle. I don't want to add a title on Marker.
map.addCircle(CircleOptions()
.center(reminder.latLng)
.radius(radius)
.strokeColor(ContextCompat.getColor(context, R.color.colorAccent))
.fillColor(ContextCompat.getColor(context, R.color.colorReminderFill)))
for Marker I can use this
map.addMarker(MarkerOptions().position(latLng).title(reminder.name)
.snippet("Radius: " + reminder.radius)).showInfoWindow()
The requirement is to add title inside or bottom of the circle not on marker