ThinkGeo.com    |     Documentation    |     Premium Support

Marker tapped not being fired

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);

You code looks good, maybe something wrong in the DeviceMarker? Here we have a tap-on-marker sample where it pops up a popup window when tapping a marker.

HowDoISample/Samples/MarkersAndPopups/UsingMarkers.xaml.cs · master · ThinkGeo / Public / Mobile Maps · GitLab

Please borrow the code see if that works. You can also run the sample see it working on your device. This is what it looks like on Android:

Thanks,
Ben