custom_map_markers
custom_map_markers copied to clipboard
Makers only show above lat lng, not in center
Makers only show above lat lng, not in center
I want to float the container widget in the center of the marker.
is this possible???
Hey @yeahse, did you find a solution ?
try setting the 'anchor' property of your wrapped Marker object :
MarkerData(
marker: Marker(
markerId: markerId,
position: position,
anchor: Offset(0.5, 0.5), // <-- set the offset to 0.5 width and 0.5 height of your custom marker
),
child: _yourCustomMarkerWidget
)
note that 'anchor' only works on Android and (possibly) iOS (haven't tested it), flutter web does not support this property