I'm trying to use the new Pin.Clicked event with no joy - anyone got it working??
`var position = new Position(venue.Lat, venue.Lon);
var pin = new Pin
{
Type = PinType.Place,
Position = position,
Label = venue.Title,
Address = venue.Address + " " + venue.Suburb + " " + venue.Postcode
};
pin.Clicked += (sender, e) =>
{
DisplayAlert("Tapped!", "Pin was tapped.", "OK");
};
map.Pins.Add(pin);`