Circle class

Circle with specified center/radius on the map

Constructors

Circle({required String id, required LatLng center, required double radiusInMeters, Color? fillColor = Colors.transparent, Color? strokeColor = Colors.black, double? strokeWidth = 1.0, double? zIndex = 0.0, bool pulsingVisible = false, double? pulsingTime = 0.5, double? pulsingInterval = 2.5})
const

Properties

center LatLng
The location where the Circle is centered. Is represented as LatLng.
final
fillColor Color?
Optional FillColor used to color the area inside the Circle.
final
hashCode int
The hash code for this object.
no setteroverride
id String
Uniquely identifies a Circle.
final
pulsingInterval double?
final
pulsingTime double?
final
pulsingVisible bool
Optional Circle Pulsing Effect
final
radiusInMeters double
The radius of the Circle.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
strokeColor Color?
Optional StrokeColor used to color the boundary of the Circle.
final
strokeWidth double?
Optional StrokeWidth used to width the boundary of the Circle.
final
zIndex double?
The z-index of the Circle, used to determine relative drawing order of map overlays.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override