SuperMap.WindowsPhone.Samples.MeasureDistance.DoubleTap C# (CSharp) Method

DoubleTap() public method

public DoubleTap ( GestureEventArgs e ) : void
e GestureEventArgs
return void
        public override void DoubleTap(GestureEventArgs e)
        {
            base.DoubleTap(e);
            Point2D point = _map.ScreenToMap(e.GetPosition(_map));
            EndDistance(point, true);
        }