I have map rotation enabled on FlutterMap widget and it works but when I'm using the MoveMarker layer on my map, the marker rotation does not work. Could you please take a look?
MoveMarkerOptions(
marker: Marker(
anchorPos: AnchorPos.align(AnchorAlign.top),
width: 100,
height:100,
point: points!.first,
rotate: true,
rotateAlignment:
PopupMarkerLayerOptions.rotationAlignmentFor(
AnchorAlign.top,
),
builder: (_) => const FlutterLogo(),
),
points: points ?? [],
moveMarkerController: mapMoveController,
duration: const Duration(microseconds: 80),
moveCallBack: onMoveMarker,
),
I have map rotation enabled on FlutterMap widget and it works but when I'm using the MoveMarker layer on my map, the marker rotation does not work. Could you please take a look?