CoordinateAnimation QML Type

A PropertyAnimation for geo coordinate properties. 更多...

import 語句: import QtPositioning 5.15
Since: Qt 5.3
繼承:

PropertyAnimation

特性

詳細描述

專用 PropertyAnimation that defines an animation between two coordinates .

默認情況下, latitude coordinate is animated in the direction of shortest (geodesic) distance between those coordinates. Since CoordinateAnimation uses Mercator map projection, the latitude animation is always between -90 and 90 degrees. The longitude animation path is not limited and can go over 180 degrees in both west and east directions.

The direction property can be set to specify the direction in which the longitude animation should occur.

另請參閱 Qt Quick 中的動畫和過渡 .

特性文檔編製

direction : enumeration

This property holds the direction of the longitude animation of the coordinate .

Possible values are:

  • CoordinateAnimation .Shortest (default) - the longitude animation goes in the direction that produces the shortest animation path.
  • CoordinateAnimation .West - the longitude animation always goes into western direction and may cross the date line.
  • CoordinateAnimation .East - the longitude animation always goes into eastern direction and may cross the date line.

該特性在 Qt 5.5 引入。

from : coordinate

This property holds the coordinate where the animation should begin.

to : coordinate

This property holds the coordinate where the animation should end.