I wanted to know if there was a way to show a label above or next to a pin in Xamarin.Forms.Maps when you zoom in and the place's name shows next to the pin like this:
Google Maps
iOS
Thank you so much !
I wanted to know if there was a way to show a label above or next to a pin in Xamarin.Forms.Maps when you zoom in and the place's name shows next to the pin like this:
Google Maps
iOS
Thank you so much !
Copyright © 2021 Jogjafile Inc.
We can do this with custom renderer on each platform.
Here is an example for iOS solution,just add a subview and adjust its position in
GetViewForAnnotation
method .Refer to https://stackoverflow.com/a/69265658/8187800 .