The QGeoLocation class represents basic information about a location. 更多...
| 頭: | #include <QGeoLocation> |
| qmake: | QT += positioning |
| Since: | Qt 5.2 |
該類在 Qt 5.2 引入。
| QGeoLocation (const QGeoLocation & other ) | |
| QGeoLocation () | |
| QGeoLocation & | operator= (const QGeoLocation & other ) |
| ~QGeoLocation () | |
| QGeoAddress | address () const |
| QGeoRectangle | boundingBox () const |
| QGeoCoordinate | coordinate () const |
| QVariantMap | extendedAttributes () const |
| bool | isEmpty () const |
| void | setAddress (const QGeoAddress & address ) |
| void | setBoundingBox (const QGeoRectangle & boundingBox ) |
| void | setCoordinate (const QGeoCoordinate & coordinate ) |
| void | setExtendedAttributes (const QVariantMap & data ) |
| bool | operator!= (const QGeoLocation & other ) const |
| bool | operator== (const QGeoLocation & other ) const |
A QGeoLocation consists of a coordinate and corresponding address, along with an optional bounding box which is the recommended region to be displayed when viewing the location.
構造副本為 other
Constructs an new location object.
賦值 other to this location and returns a reference to this location.
Destroys the location object.
Returns the address of the location.
另請參閱 setAddress ().
Returns a bounding box which represents the recommended region to display when viewing this location.
For example, a building's location may have a region centered around the building, but the region is large enough to show it's immediate surrounding geographical context.
另請參閱 setBoundingBox ().
Returns the coordinate of the location.
另請參閱 setCoordinate ().
Returns the extended attributes associated to this location. Extended attributes are backend-dependent and can be location-dependent.
該函數在 Qt 5.13 引入。
另請參閱 setExtendedAttributes ().
Returns true if all fields of the location are 0; otherwise returns false.
設置 address of the location.
另請參閱 address ().
設置 boundingBox of the location.
另請參閱 boundingBox ().
設置 coordinate of the location.
另請參閱 coordinate ().
Sets the extended attributes of the location with the parameters specified in data .
該函數在 Qt 5.13 引入。
另請參閱 extendedAttributes ().
Returns true if this location is not equal to other ,否則返迴 false。
Returns true if this location is equal to other ,否則返迴 false。