Animation utility for the flutter_map package.
Just create an AnimatedMapController
and you're good to go:
class _MyWidgetState extends State<MyWidget> with TickerProviderStateMixin {
late final _animatedMapController = AnimatedMapController(vsync: this);
// ...
}
You can specify the animation duration
and curve
:
AnimatedMapController(
vsync: this,
duration: const Duration(milliseconds: 500),
curve: Curves.easeInOut,
);
And add it to your FlutterMap
widget:
FlutterMap(
mapController: _animatedMapController.mapController,
// ...
)
Rotation | Zoom | Center on point |
---|---|---|
Check the AnimatedMapController
API for more!
AnimatedMarker |
---|
FlutterMap(
mapController: _animatedMapController.mapController,
children: [
TileLayer(
urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
userAgentPackageName: 'com.example.app',
),
AnimatedMarkerLayer(
markers: [
AnimatedMarker(
point: LatLng(51.509364, -0.128928),
builder: (_, animation) {
final size = 50.0 * animation.value;
return Icon(
Icons.location_on,
size: size,
);
},
),
],
),
],
)
With flutter_map v6 some parameters have been removed or renamed:
AnimatedMarker.rotateOrigin
,AnimatedMarker.anchorPos
have been removedAnimatedMarker.rotateAlignment
has been renamed toAnimatedMarker.alignment
AnimatedMarkerLayer.rotateOrigin
,AnimatedMarkerLayer.anchorPos
have been removedAnimatedMarkerLayer.rotateAlignment
has been renamed toAnimatedMarkerLayer.alignment
- With flutter_map v5 it's not possible anymore to extend
MapControllerImpl
which was used to use theAnimatedMapController
directly as aMapController
in theFlutterMap
widget. Now an instance ofMapController
is created internally or can be passed as a parameter to theAnimatedMapController
constructor. You can access it with themapController
getter:
late final _animatedMapController = AnimatedMapController(vsync: this);
@override
Widget build(BuildContext context) {
return FlutterMap(
mapController: _animatedMapController.mapController,
// ...
);
}
Guillaume Roux |
Luka S |
Rory Stephenson |
Reinis Sprogis |