Class GeoCoordinatesKeyframe
Package com.here.sdk.animation
Class GeoCoordinatesKeyframe
- java.lang.Object
-
- com.here.sdk.animation.GeoCoordinatesKeyframe
-
public final class GeoCoordinatesKeyframe extends java.lang.ObjectA GeoCoordinatesKeyframe consists of a GeoCoordinates and an animation duration.
-
-
Field Summary
Fields Modifier and Type Field Description DurationdurationRelative animation duration for reaching the keyframe value from previous keyframe value.GeoCoordinatesvalueGeoCoordinates keyframe value.
-
Constructor Summary
Constructors Constructor Description GeoCoordinatesKeyframe(GeoCoordinates value, Duration duration)Constructs a GeoCoordinatesKeyframe from the value and offset.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
value
@NonNull public final GeoCoordinates value
GeoCoordinates keyframe value. Altitude component is ignored.
-
duration
@NonNull public final Duration duration
Relative animation duration for reaching the keyframe value from previous keyframe value. Negative duration value gets clamped to 0.
-
-
Constructor Detail
-
GeoCoordinatesKeyframe
public GeoCoordinatesKeyframe(@NonNull GeoCoordinates value, @NonNull Duration duration)Constructs a GeoCoordinatesKeyframe from the value and offset.
- Parameters:
value-GeoCoordinates keyframe value.
duration-Relative animation duration for reaching the keyframe value. Negative duration value gets clamped to 0.
-
-