I've done everyhing shown in the following link: https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/custom-renderer/map-pin
Works great shows the image named pin.png
I want to keep that one but add another pin with a DIFFERENT image.
What should I add/change in my code to do that?
This is what I currectly use to set the pin
CustomPin pin4 = new CustomPin
{
Type = PinType.Place,
Position = new Position(9.936165, -84.039919),
Label = "Fin",
};
map.CustomPins = new List<CustomPin> { pin };
map.Pins.Add(pin4);
How can I use the markeroptions seticon?