diff --git a/src/imports/location/location.cpp b/src/imports/location/location.cpp index 5d1b6e23264c44b9dca61084264dcb46d618d261..450877510e8d010d116122f8aa82cd1653f22aef 100644 --- a/src/imports/location/location.cpp +++ b/src/imports/location/location.cpp @@ -196,6 +196,8 @@ public: qmlRegisterType<QDeclarativeGeoRouteLeg, 12>(uri, major, minor, "RouteLeg"); minor = 13; + qmlRegisterType<QDeclarativeGeoMap, 13>(uri, major, minor, "Map"); + qmlRegisterType<QDeclarativeGeoRoute, 13>(uri, major, minor, "Route"); qmlRegisterType<QDeclarativeGeoRouteQuery, 13>(uri, major, minor, "RouteQuery"); // Register the latest Qt version as QML type version diff --git a/src/imports/location/plugins.qmltypes b/src/imports/location/plugins.qmltypes index 8d94169a240512b7716d3be04e17ec3f99d81e7d..64f19ec1d4971feed7adbc6f4a578cc75d82b804 100644 --- a/src/imports/location/plugins.qmltypes +++ b/src/imports/location/plugins.qmltypes @@ -152,9 +152,10 @@ Module { exports: [ "QtLocation/Map 5.0", "QtLocation/Map 5.11", - "QtLocation/Map 5.12" + "QtLocation/Map 5.12", + "QtLocation/Map 5.13" ] - exportMetaObjectRevisions: [0, 11, 12] + exportMetaObjectRevisions: [0, 11, 12, 13] Property { name: "gesture"; type: "QQuickGeoMapGestureArea"; isReadonly: true; isPointer: true } Property { name: "plugin"; type: "QDeclarativeGeoServiceProvider"; isPointer: true } Property { name: "minimumZoomLevel"; type: "double" } @@ -470,9 +471,10 @@ Module { exports: [ "QtLocation/Route 5.0", "QtLocation/Route 5.11", - "QtLocation/Route 5.12" + "QtLocation/Route 5.12", + "QtLocation/Route 5.13" ] - exportMetaObjectRevisions: [0, 11, 12] + exportMetaObjectRevisions: [0, 11, 12, 13] Property { name: "bounds"; type: "QGeoRectangle"; isReadonly: true } Property { name: "travelTime"; type: "int"; isReadonly: true } Property { name: "distance"; type: "double"; isReadonly: true }