QGeoPositionInfo Class

QGeoPositionInfo class contains information gathered on a global position, direction and velocity at a particular point in time. 更多...

头: #include <QGeoPositionInfo>
qmake: QT += positioning
Since: Qt 5.2

公共类型

enum 属性 { Direction, GroundSpeed, VerticalSpeed, MagneticVariation, HorizontalAccuracy, VerticalAccuracy }

公共函数

QGeoPositionInfo ()
QGeoPositionInfo (const QGeoCoordinate & coordinate , const QDateTime & timestamp )
QGeoPositionInfo (const QGeoPositionInfo & other )
QGeoPositionInfo (QGeoPositionInfoPrivate & dd )
~QGeoPositionInfo ()
qreal attribute (Attribute attribute ) const
QGeoCoordinate coordinate () const
bool hasAttribute (Attribute attribute ) const
bool isValid () const
void removeAttribute (Attribute attribute )
void setAttribute (Attribute attribute , qreal value )
void setCoordinate (const QGeoCoordinate & coordinate )
void setTimestamp (const QDateTime & timestamp )
QDateTime timestamp () const
bool operator!= (const QGeoPositionInfo & other ) const
QGeoPositionInfo & operator= (const QGeoPositionInfo & other )
bool operator== (const QGeoPositionInfo & other ) const
QDataStream & operator<< (QDataStream & stream , QGeoPositionInfo::Attribute attr )
QDataStream & operator<< (QDataStream & stream , const QGeoPositionInfo & info )
QDataStream & operator>> (QDataStream & stream , QGeoPositionInfo::Attribute & attr )
QDataStream & operator>> (QDataStream & stream , QGeoPositionInfo & info )

详细描述

QGeoPositionInfo class contains information gathered on a global position, direction and velocity at a particular point in time.

A QGeoPositionInfo contains, at a minimum, a geographical coordinate and a timestamp. It may also have heading and speed measurements as well as estimates of the accuracy of the provided data.

另请参阅 QGeoPositionInfoSource .

成员类型文档编制

enum QGeoPositionInfo:: 属性

Defines the attributes for positional information.

常量 描述
QGeoPositionInfo::Direction 0 The bearing measured in degrees clockwise from true north to the direction of travel.
QGeoPositionInfo::GroundSpeed 1 The ground speed, in meters/sec.
QGeoPositionInfo::VerticalSpeed 2 The vertical speed, in meters/sec.
QGeoPositionInfo::MagneticVariation 3 The angle between the horizontal component of the magnetic field and true north, in degrees. Also known as magnetic declination. A positive value indicates a clockwise direction from true north and a negative value indicates a counter-clockwise direction.
QGeoPositionInfo::HorizontalAccuracy 4 The accuracy of the provided latitude-longitude value, in meters.
QGeoPositionInfo::VerticalAccuracy 5 The accuracy of the provided altitude value, in meters.

成员函数文档编制

QGeoPositionInfo:: QGeoPositionInfo ()

Creates an invalid QGeoPositionInfo 对象。

另请参阅 isValid ().

QGeoPositionInfo:: QGeoPositionInfo (const QGeoCoordinate & coordinate , const QDateTime & timestamp )

创建 QGeoPositionInfo 为给定 coordinate and timestamp .

QGeoPositionInfo:: QGeoPositionInfo (const QGeoPositionInfo & other )

创建 QGeoPositionInfo with the values of other .

QGeoPositionInfo:: QGeoPositionInfo ( QGeoPositionInfoPrivate & dd )

Copy constructor.

QGeoPositionInfo:: ~QGeoPositionInfo ()

销毁 QGeoPositionInfo 对象。

qreal QGeoPositionInfo:: attribute ( 属性 attribute ) const

Returns the value of the specified attribute as a qreal value.

Returns NaN if the value has not been set.

函数 hasAttribute () should be used to determine whether or not a value has been set for an attribute.

另请参阅 hasAttribute () 和 setAttribute ().

QGeoCoordinate QGeoPositionInfo:: coordinate () const

Returns the coordinate for this position.

Returns an invalid coordinate if no coordinate has been set.

另请参阅 setCoordinate ().

bool QGeoPositionInfo:: hasAttribute ( 属性 attribute ) const

返回 true 若指定 attribute is present for this QGeoPositionInfo 对象。

bool QGeoPositionInfo:: isValid () const

返回 true 若 timestamp () 和 coordinate () values are both valid.

另请参阅 QGeoCoordinate::isValid () 和 QDateTime::isValid ().

void QGeoPositionInfo:: removeAttribute ( 属性 attribute )

移除指定 attribute and its value.

void QGeoPositionInfo:: setAttribute ( 属性 attribute , qreal value )

Sets the value for attribute to value .

另请参阅 attribute ().

void QGeoPositionInfo:: setCoordinate (const QGeoCoordinate & coordinate )

Sets the coordinate for this position to coordinate .

另请参阅 coordinate ().

void QGeoPositionInfo:: setTimestamp (const QDateTime & timestamp )

Sets the date and time at which this position was reported to timestamp .

timestamp must be in UTC time.

另请参阅 timestamp ().

QDateTime QGeoPositionInfo:: timestamp () const

Returns the date and time at which this position was reported, in UTC time.

Returns an invalid QDateTime if no date/time value has been set.

另请参阅 setTimestamp ().

bool QGeoPositionInfo:: operator!= (const QGeoPositionInfo & other ) const

Returns true if any of this object's values are not the same as those of other .

QGeoPositionInfo &QGeoPositionInfo:: operator= (const QGeoPositionInfo & other )

Assigns the values from other 到此 QGeoPositionInfo .

bool QGeoPositionInfo:: operator== (const QGeoPositionInfo & other ) const

Returns true if all of this object's values are the same as those of other .

相关非成员

QDataStream & operator<< ( QDataStream & stream , QGeoPositionInfo::Attribute attr )

写入给定 attr enumeration to the specified stream .

另请参阅 序列化 Qt 数据类型 .

QDataStream & operator<< ( QDataStream & stream , const QGeoPositionInfo & info )

写入给定 info 到指定 stream .

另请参阅 序列化 Qt 数据类型 .

QDataStream & operator>> ( QDataStream & stream , QGeoPositionInfo::Attribute & attr )

Reads an attribute enumeration from the specified stream info the given attr .

另请参阅 序列化 Qt 数据类型 .

QDataStream & operator>> ( QDataStream & stream , QGeoPositionInfo & info )

Reads a coordinate from the specified stream 进给定 info .

另请参阅 序列化 Qt 数据类型 .