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.

class MapAnimationOptions

Types

Builder
Link copied to clipboard

Builder class used to construct immutable MapAnimationOptions object.

class Builder
Companion
Link copied to clipboard

Static methods.

object Companion

Functions

equals
Link copied to clipboard

Equals method.

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

Hash code method.

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

Properties

animatorListener
Link copied to clipboard

Animator start / cancel / end listener.

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

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).

val duration: Long?
interpolator
Link copied to clipboard

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

val interpolator: TimeInterpolator?
owner
Link copied to clipboard

Owner or creator this animation.

val owner: String?