Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qlocation.cpp
Go to the documentation of this file.
1// Copyright (C) 2015 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#include <QtLocation/QLocation>
5
6QT_BEGIN_NAMESPACE
7
8namespace QLocation {
9
10/*!
11 \namespace QLocation
12 \inmodule QtLocation
13 \keyword QLocation Namespace
14
15 \brief The QLocation namespace contains miscellaneous identifiers used throughout the
16 QtLocation module.
17*/
18
19/*!
20 \enum QLocation::Visibility
21
22 Defines the visibility of a QPlace or QPlaceCategory.
23
24 \value UnspecifiedVisibility No explicit visibility has been defined.
25 \value DeviceVisibility Places and categories with DeviceVisibility are only stored on
26 the local device.
27 \value PrivateVisibility Places and categories with PrivateVisibility are only visible
28 to the current user. The data may be stored either locally or
29 on a remote service or both.
30 \value PublicVisibility Places and categories with PublicVisibility are visible to
31 everyone.
32
33 A particular manager may support one or more visibility scopes. For example a manager from one provider may only provide places
34 that are public to everyone, whilst another may provide both public and private places.
35
36 \note The meaning of unspecified visibility depends on the context it is used.
37
38 When \e saving a place or category, the
39 default visibility is unspecified meaning that the manager chooses an appropriate visibility scope for the item.
40
41 When \e searching for places, unspecified means that places of any scope is returned.
42*/
43
44/*!
45 \enum QLocation::ReferenceSurface
46 \since 6.6
47
48 Defines the reference surface on which various map items (e.g. polygons, polylines) are defined.
49
50 \value Map Items are defined on a map. This means, e.g. for a polyline that
51 nodes are connected with straight lines on the map.
52 \value Globe Items are defined on the globe. This means, e.g. for a polyine
53 that nodes are connected with circle sections that represent the
54 shortest connection between points on a sphere. This connection is
55 also known as great circle path.
56*/
57}
58
59QT_END_NAMESPACE
\inmodule QtLocation \keyword QLocation Namespace
Definition qlocation.cpp:8