Select to view content in your preferred language

Detecting Manual Navigation with Xamarin.Forms

1720
0
11-23-2016 05:37 PM
ThomasVercoutre
Deactivated User

I am currently developing an app with some navigation capabilities.

I am trying to detect manual navigation on the map : pan gesture for the moment.

I am using the latest version of Xamarin.Forms and the new released ArcGIS Runtime SDK for .NET.

In my main page I've added a Gesture Recgonizer on the MapView

<esriUI:MapView>
   <esriUI:MapView.GestureRecognizers>
      <PanGestureRecognizer PanUpdated="PanGestureRecognizer_OnPanUpdated"></PanGestureRecognizer>
   </esriUI:MapView.GestureRecognizers>
</esriUI:MapView>

So the PanUpdated event is triggered properly on UWP app but not on Android. It seems that the MapView swallows all the touch events. 

Is anyone has the same issue and found a solution ?

Cheers

Tags (1)
0 Kudos
0 Replies