MapAnimationOptions

class MapAnimationOptions

Map transition options which are used to configure animation if using high-level API like CameraAnimationsPlugin.easeTo, CameraAnimationsPlugin.flyTo etc MapAnimationOptions.Builder should be used to create options object via DSL function mapAnimationOptions.

Types

Builder
Link copied to clipboard
class Builder

Builder class used to construct immutable MapAnimationOptions object.

Companion
Link copied to clipboard
object Companion

Static methods.

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Equals method.

hashCode
Link copied to clipboard
open override fun hashCode(): Int

Hash code method.

Properties

animatorListener
Link copied to clipboard
val animatorListener: Animator.AnimatorListener?

Animator start / cancel / end listener.

duration
Link copied to clipboard
val duration: Long?

The duration of the animation in milliseconds. If not set explicitly default duration will be taken (CameraAnimatorsFactory.DEFAULT_ANIMATION_DURATION_MS if using plugin-animation).

interpolator
Link copied to clipboard
val interpolator: TimeInterpolator?

The animation interpolator. If not set explicitly default interpolator will be taken (CameraAnimatorsFactory.DEFAULT_INTERPOLATOR if using plugin-animation).

owner
Link copied to clipboard
val owner: String?

Owner or creator this animation.

startDelay
Link copied to clipboard
val startDelay: Long?

The amount of time, in milliseconds, to delay starting the animation after animation start.