zoom property

double zoom
final

Google Maps' zoom: require for scale the ripple radius depending on zoom Preventing, this way, a huge ripple size using a fixed radius when zoom changes

Animarker(
  ...
  zoom: zoom,
  child: GoogleMap(
    onCameraMove: (ca) => setState(() => zoom = ca.zoom),
  ),
  ...
 )

Default value: 15.0

Implementation

final double zoom;