I want to display text in multiple lines in the pin's label when it is clicked, but when I have a very long text to be displayed in Address
it shows me only a part of it and rest of it remains hidden eg: 'Street 12A...'
.
How can I make the label to display the whole text on clicking it and if possible then in multiple lines using Xamarin.Forms.Maps.
var pin = new Pin
{
Type = PinType.Place,
Position = position,
Label = "Label Name",
Address = "some text..........."
};
map.Pins.Add(pin);