What is the bug?
CircleMarker fills the circle with either CircleMarker.color or CircleMarker.borderColor
How can we reproduce it?
Looks like any circle will be filled with the stroke color regardless of the settings/parameters
Do you have a potential solution?
circle_layer.dart : line 104 and 118
this line looks suspicious:
final radiusPaint = paint..strokeWidth = radius;
should probably be:
final radiusPaint = paint..strokeWidth = borderStrokeWidth;
Platforms
Any
Severity
Obtrusive: Prevents normal functioning but causes no errors in the console
What is the bug?
CircleMarker fills the circle with either CircleMarker.color or CircleMarker.borderColor
How can we reproduce it?
Looks like any circle will be filled with the stroke color regardless of the settings/parameters
Do you have a potential solution?
circle_layer.dart : line 104 and 118
this line looks suspicious:
final radiusPaint = paint..strokeWidth = radius;
should probably be:
final radiusPaint = paint..strokeWidth = borderStrokeWidth;
Platforms
Any
Severity
Obtrusive: Prevents normal functioning but causes no errors in the console