Circle Layer
You can add circle areas to maps by making them out of a center coordinate and radius using CircleLayer
and CircleMarker
s.
CircleLayer(
circles: [
CircleMarker(
point: LatLng(51.50739215592943, -0.127709825533512),
radius: 10000,
useRadiusInMeter: true,
),
],
),
Excessive use of circles may create performance issues.
Interactivity
CircleLayer
s and CircleMarker
s support hit detection and interactivity.