CurrentExtentChangedInAnimationMapViewEventArgs¶
Namespace: ThinkGeo.UI.Wpf
Provides data describing the current extent while a map animation is in progress.
public class CurrentExtentChangedInAnimationMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → CurrentExtentChangedInAnimationMapViewEventArgs
Properties¶
FromCenterPoint¶
Gets the starting center point of the animation.
public PointShape FromCenterPoint { get; internal set; }
Property Value¶
PointShape
ToCenterPoint¶
Gets the current center point reached during the animation.
public PointShape ToCenterPoint { get; internal set; }
Property Value¶
PointShape
FromResolution¶
Gets the starting resolution of the map before the animation.
public double FromResolution { get; internal set; }
Property Value¶
ToResolution¶
Gets the current resolution reached by the animation.
public double ToResolution { get; internal set; }
Property Value¶
FromRotationAngle¶
Gets the starting rotation angle before the animation begins.
public double FromRotationAngle { get; internal set; }
Property Value¶
ToRotationAngle¶
Gets the current rotation angle reached during the animation.
public double ToRotationAngle { get; internal set; }
Property Value¶
Progress¶
From 0 to 1, 0 means the animation just started, 1 means the animation is finished.
public double Progress { get; internal set; }
Property Value¶
Constructors¶
CurrentExtentChangedInAnimationMapViewEventArgs()¶
public CurrentExtentChangedInAnimationMapViewEventArgs()