<Custom Marker in RadiusMarkerClusterer> I created...
# stackoverflow
u
Custom Marker in RadiusMarkerClusterer I created a customMarker that in addition to the image contains a label at the bottom with a name. If I create a "FolderOverlay" everything works correctly I see my custom Marker. This is my customMarker class MarkerWithLabel(mapView: MapView?, val label: String) : Marker(mapView) { val textPaint = Paint() init { with(textPaint){ color = Color.BLACK textSize = 35f isAntiAlias = true typeface = Typeface.DEFAULT_BOLD textAlign = Paint.Align.CENTER...