custom_map_markers icon indicating copy to clipboard operation
custom_map_markers copied to clipboard

Makers only show above lat lng, not in center

Open yeahse opened this issue 3 years ago • 2 comments

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???

yeahse avatar Oct 20 '22 11:10 yeahse

Hey @yeahse, did you find a solution ?

LucaCoduriV avatar Jun 25 '23 20:06 LucaCoduriV

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

szymek-pindelski avatar Oct 08 '23 15:10 szymek-pindelski