SuperMap.Web.Mapping.PanAnimation.Stop C# (CSharp) Method

Stop() private method

private Stop ( bool stopTimer ) : void
stopTimer bool
return void
        internal void Stop(bool stopTimer)
        {
            if (this.isAnimating)
            {
                this.StopLoop();
                if (!stopTimer)
                {
                    this.OnPanAnimationCompleted();
                }
            }
        }