While testing both 2.1rc ?(2.1.0.427) and 2.1 release (2.1.0.446) and registering to the MapGesture event there is a difference between the versions when it comes to firing the event when a simpe touch and hold is performed:
The code in the MapGesture event is: Debug.WriteLine(e.Gesture + " " + e.MapPoint.ToString());
When touching the screen and holding for a couple of seconds in the rc version I get the following output: Started Point[X=-1018500, Y=262500, WKID=102100] Hold Point[X=-1018500, Y=262500, WKID=102100] Completed Point[X=-5428500, Y=3391500, WKID=102100]
But when running with the release I get: Started Point[X=-1228500, Y=850500, WKID=102100] Drag Point[X=-1165500, Y=766500, WKID=102100] Drag Point[X=-1228500, Y=850500, WKID=102100] Drag Point[X=-1291500, Y=871500, WKID=102100] Drag Point[X=-1228500, Y=850500, WKID=102100] Drag Point[X=-1228500, Y=850500, WKID=102100] Drag Point[X=-1228500, Y=850500, WKID=102100] Drag Point[X=-1228500, Y=850500, WKID=102100] Drag Point[X=-1228500, Y=850500, WKID=102100] Drag Point[X=-1228500, Y=850500, WKID=102100] Drag Point[X=-1249500, Y=850500, WKID=102100] Drag Point[X=-1228500, Y=850500, WKID=102100]
And of course I'm not getting the hold gesture.
It seems the release version is more sensitive to touch and although my finger is quite steady on the screen, it thinks there is a movement.
Is there somewhere I can change the map's sensitivity to touch?