I am adding a marker using the code below but the tapped is never being fired.
Any help would be very much appreciated.
The marker is showing fine (DeviceMarker.xaml), it appears to be in the top layer.
I have checked in the example but really cannot see anything different.
var marker = new DeviceMarker();
marker.DeviceResponse = device;
marker.Position = pointShape;
marker.Tappble = true;
marker.Tapped += (s, e) =>
{
DeviceTappedCommand.Execute(device);
};
_deviceMarkers.Add(marker);
_markerOverlay.Add(marker);