flutter_animarker icon indicating copy to clipboard operation
flutter_animarker copied to clipboard

How remove RippleMarker?

Open vishaldhaduk9986 opened this issue 4 years ago • 3 comments
trafficstars

I am using marker with Animarker and tried to remove marker but unfortunately it's not removing from map ui.

vishaldhaduk9986 avatar May 08 '21 13:05 vishaldhaduk9986

this issue affect all markers types - so I created related issue about https://github.com/gauris26/flutter_animarker/issues/15

zs-dima avatar May 13 '21 15:05 zs-dima

I uploaded a new beta prerelease version, please try it. I think fix this issue. Please provide me the feedback about it.

gauris26 avatar Jul 06 '21 14:07 gauris26

@gauris26 thanks a lot for looking into I could not see Ripple effect after the new beta update

image

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
		...
	),
)

zs-dima avatar Jul 15 '21 12:07 zs-dima