summaryrefslogtreecommitdiff
path: root/src/location/declarativemaps/qdeclarativegeomap.cpp
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2017-03-03 12:58:09 -0800
committerPaolo Angelelli <paolo.angelelli@qt.io>2017-03-03 21:18:00 +0000
commit6447ad0b5d1beaefac767019591f1d6fea97d3fd (patch)
tree1fca4830b962d5270cff243340fd15cb2c167d2c /src/location/declarativemaps/qdeclarativegeomap.cpp
parent32ffdfbb4ed93df0e4b71a1ed0831813ddd51fe4 (diff)
downloadqtlocation-6447ad0b5d1beaefac767019591f1d6fea97d3fd.tar.gz
Notify when the map is initialized
This patch makes the map notify when the initialization is complete, and thus all the API functioning as expected, like fromCoordinate and toCoordinate. Change-Id: Idaebbcf910f32dd297bd5ebec6dffa166d015b4a Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io>
Diffstat (limited to 'src/location/declarativemaps/qdeclarativegeomap.cpp')
-rw-r--r--src/location/declarativemaps/qdeclarativegeomap.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/location/declarativemaps/qdeclarativegeomap.cpp b/src/location/declarativemaps/qdeclarativegeomap.cpp
index a509a98a..604b0c46 100644
--- a/src/location/declarativemaps/qdeclarativegeomap.cpp
+++ b/src/location/declarativemaps/qdeclarativegeomap.cpp
@@ -159,6 +159,12 @@ QT_BEGIN_NAMESPACE
application should open the link in a browser or display its contents to the user.
*/
+/*!
+ \qmlsignal QtLocation::Map::initialized()
+
+ This signal is emitted when the initialization of the map is complete.
+*/
+
QDeclarativeGeoMap::QDeclarativeGeoMap(QQuickItem *parent)
: QQuickItem(parent),
m_plugin(0),
@@ -417,6 +423,8 @@ void QDeclarativeGeoMap::initialize()
if (fovHasChanged)
emit fieldOfViewChanged(m_cameraData.fieldOfView());
+
+ emit initialized();
}
/*!