SuperMap.WindowsPhone.Mapping.Map.OnManipulationStarted C# (CSharp) Method

OnManipulationStarted() protected method

protected OnManipulationStarted ( System.Windows.Input.ManipulationStartedEventArgs e ) : void
e System.Windows.Input.ManipulationStartedEventArgs
return void
        protected override void OnManipulationStarted(ManipulationStartedEventArgs e)
        {
            base.OnManipulationStarted(e);

            //if (this.Action != null)
            //{
            //    this.Action.OnManipulationStarted(e);
            //}
            _center = this.TransformToVisual(layerCollectionContainer).Transform(e.ManipulationOrigin);
            _centerP = this.ScreenToMap(_center);
        }