Circle

data class Circle(val center: Coordinates, val radius: Float, val color: Color? = null, val lineColor: Color? = null, val lineWidth: Float? = null)

Represents a circle overlay on the map.

Parameters

center

The center coordinates of the circle

radius

The radius of the circle in meters

color

The fill color of the circle

lineColor

The color of the circle's border

lineWidth

The width of the circle's border

Constructors

Link copied to clipboard
constructor(center: Coordinates, radius: Float, color: Color? = null, lineColor: Color? = null, lineWidth: Float? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val color: Color? = null
Link copied to clipboard
val lineColor: Color? = null
Link copied to clipboard
val lineWidth: Float? = null
Link copied to clipboard