Я работаю над Geofence на android карте Google. Я могу добавить GeoFence в карту. Мне нужно добавить название Geofence внутри круга или внизу круга. Я не хочу добавлять заголовок на Маркер.
map.addCircle(CircleOptions()
.center(reminder.latLng)
.radius(radius)
.strokeColor(ContextCompat.getColor(context, R.color.colorAccent))
.fillColor(ContextCompat.getColor(context, R.color.colorReminderFill)))
для Маркер Я могу использовать это
map.addMarker(MarkerOptions().position(latLng).title(reminder.name)
.snippet("Radius: " + reminder.radius)).showInfoWindow()
Требуется добавить заголовок внутри или внизу круга, а не на маркере