Google Maps Flutter 在 onTap() 之后禁用中心标记

Google Maps Flutter disable center Marker after onTap()

我使用 flutter_google_maps,在点击标记后,标记会自动在地图上居中。 有没有办法禁用它?

谢谢 约尔格

在创建标记时,确保将 consumeTapEvents 传递给 true,它会发挥作用。 按照下面的代码行:

Marker marker = Marker(markerId: markerId, consumeTapEvents: true)