I am currently using Mapsui in my .NET Maui project. I have gotten to the point of building out my callouts and displaying one at a time, but they are anchored to the pins for the locations (seen here):
I was wondering if there was a way to make these callouts "float" (similar to Google Maps implementation shown below):
Is there a way to do this with the callouts, or am I going to need to build another layer and have it visible/hidden based on the ClickEvents?
My solution for this was similar to @Poulpynator's suggestion. Using Mopups I was able to rewrite my existing code so that instead of displaying a Mapsui Callout on POI click, it would call a POI Mopup (mopups:PopupPage). In doing this I was able to create an element that was dismissable and able to display only one at a time.