flutter_animarker
flutter_animarker copied to clipboard
How remove RippleMarker?
I am using marker with Animarker and tried to remove marker but unfortunately it's not removing from map ui.
this issue affect all markers types - so I created related issue about https://github.com/gauris26/flutter_animarker/issues/15
I uploaded a new beta prerelease version, please try it. I think fix this issue. Please provide me the feedback about it.
@gauris26 thanks a lot for looking into I could not see Ripple effect after the new beta update

I tested on Android emulator
Flutter 2.4.0-0.0.pre • channel dev Framework • revision 96bbcd006f (8 days ago) • 2021-06-30 03:43:41 -0400 Engine • revision c633b2a6a0 Tools • Dart 2.14.0 (build 2.14.0-258.0.dev)
google_maps_flutter: ^2.0.6 flutter_animarker: ^3.3.1-beta.4
Animarker(
...
curve: Curves.bounceInOut,
duration: Duration(milliseconds: 2000),
markers: <Marker>{
RippleMarker(
markerId: MarkerId('MarkerId2'),
position: LatLng(0, 0),
ripple: true,
),
},
child: GoogleMap(
...
onMapCreated: (gController) => controller.complete(gController), //Complete the future GoogleMapController
...
),
)