I have some markers and circles in my app but I cannot configure... what is the unit of radius inside google_maps_flutter package.. here is part of my code
Circle circleA = Circle(
circleId: CircleId("A"),
center: LatLng(..., ...),
radius: 4000, what is unit of radius here.. miles or pixels?
);