[Solved] How to set second label on InfoWindow xamarin map
[ad_1] You could get the CustomPin with the GetCustomPin method in the custom renderer like the sample in your above link. CustomPin GetCustomPin(Marker annotation) { var position = new Position(annotation.Position.Latitude, annotation.Position.Longitude); foreach (var pin in customPins) { if (pin.Position == position) { return pin; } } return null; } and in your public Android.Views.View GetInfoContents(Marker … Read more