summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/location/declarativemaps/qdeclarativegeomap.cpp2
-rw-r--r--src/location/labs/qdeclarativenavigator.cpp27
-rw-r--r--src/positioningquick/qdeclarativepositionsource_p.h4
3 files changed, 30 insertions, 3 deletions
diff --git a/src/location/declarativemaps/qdeclarativegeomap.cpp b/src/location/declarativemaps/qdeclarativegeomap.cpp
index 4704dc3e..9a46875e 100644
--- a/src/location/declarativemaps/qdeclarativegeomap.cpp
+++ b/src/location/declarativemaps/qdeclarativegeomap.cpp
@@ -1303,7 +1303,7 @@ QGeoCoordinate QDeclarativeGeoMap::center() const
\l zoomLevel of the map. Any previously set value to those
properties will be overridden.
- This property does not provide any change notifications.
+ \note Since Qt 5.14 This property provides change notifications.
\since 5.6
*/
diff --git a/src/location/labs/qdeclarativenavigator.cpp b/src/location/labs/qdeclarativenavigator.cpp
index ae273774..b266779c 100644
--- a/src/location/labs/qdeclarativenavigator.cpp
+++ b/src/location/labs/qdeclarativenavigator.cpp
@@ -158,6 +158,33 @@ QT_BEGIN_NAMESPACE
*/
/*!
+ \qmlproperty bool Qt.labs.location::Navigator::automaticReroutingEnabled
+
+ This property tells whether the Navigator should automatically recalculate
+ the route when the position from \l positionSource ends too far from the route.
+ The operation performed in such case is equivalent to calling \l recalculateRoutes.
+ The default value is \c true.
+
+ \note Whether this property has any effect is plugin-dependent.
+ Also, whether or not it has an effect while the navigator is active is plugin-dependent.
+*/
+
+/*!
+ \qmlproperty bool Qt.labs.location::Navigator::isOnRoute
+
+ While the Navigator is in active tracking mode, this property tells
+ whether the position from \l positionSource is on the route or not.
+*/
+
+/*!
+ \qmlmethod void Qt.labs.location::Navigator::recalculateRoutes()
+
+ Calling this method forces the backend to trigger a routes recalculation.
+
+ \sa automaticReroutingEnabled
+*/
+
+/*!
\qmlproperty enumeration Qt.labs.location::Navigator::error
\readonly
diff --git a/src/positioningquick/qdeclarativepositionsource_p.h b/src/positioningquick/qdeclarativepositionsource_p.h
index da6f8305..0c1d8944 100644
--- a/src/positioningquick/qdeclarativepositionsource_p.h
+++ b/src/positioningquick/qdeclarativepositionsource_p.h
@@ -131,8 +131,8 @@ public:
void classBegin() { }
void componentComplete();
- Q_INVOKABLE bool setBackendProperty(const QString &name, const QVariant &value);
- Q_INVOKABLE QVariant backendProperty(const QString &name) const;
+ Q_REVISION(14) Q_INVOKABLE bool setBackendProperty(const QString &name, const QVariant &value);
+ Q_REVISION(14) Q_INVOKABLE QVariant backendProperty(const QString &name) const;
public Q_SLOTS:
void update(); // TODO Qt 6 change to void update(int)