0

I am using just_the_tooltip Flutter package to show tooltip in Flutter maps. enter image description here

It is working fine but what I want is to show multiple tooltips at the same time. In this case, when one is clicked while the other is active, the previous one disappears. Also I tried other packages but tooltip does not move or scroll with the movement of map.

Ashim Bhadra
  • 268
  • 4
  • 14

1 Answers1

-1

My suggestion would be to use google_maps_flutter package instead of Flutter maps (unless you don't have a choice) mainly because of the reasons described in this answer.

The google_maps_flutter package already provides something called as an InfoWindow which is nothing but a tooltip that will be displayed when you click on the Marker.

For more information, please check this link.

inkredusk
  • 919
  • 4
  • 16