如何在 google 地图的 GeoFence 圆上添加标题?

How to add title on GeoFence circle in google maps?

我正在 android google 地图中处理地理围栏。 我可以在地图中添加 GeoFence。 我需要在圆圈内或圆圈底部添加地理围栏的标题。 我不想在 Marker 上添加标题。

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()

要求是在圆圈的内部或底部添加标题,而不是在标记上

如果你想把它们放在地图的圆圈内,你可以尝试把文字做成图片。然后你要么使用这张图片作为你的custom marker. As you don't want it to be in a marker, you can use ground overlay。因为你想把它放在圆圈内,你可以使用中心坐标作为你的标记或地面覆盖的位置。您可能还需要调整适合圆圈内的图片大小。