QML:如何从C ++代码中正确地将属性传递给PluginParameter值?

时间:2017-07-06 10:39:45

标签: c++ qt qml openstreetmap qtlocation

大家好!

我遇到了将属性值通过C++传递给QML的问题。我的项目是桌面应用程序,必须与Windows下的地图一起使用。因此,在阅读文档后,我使用Qt Location通过QML找到了最佳解决方案。我选择了OSM Plugin

一切正常但我需要手动将缓存定位到自定义目录中。因此,我希望将cachePath代码中的此类属性(C++)传递给QML

C ++代码的一部分:

QQuickView *view = new QQuickView;
view->rootContext()->setContextProperty("cachePath", "C:/111/");
view->setSource(QUrl(QStringLiteral("qrc:/qml/OSMView.qml")));

QML代码的重要部分:

Map
{
    zoomLevel: 10

    plugin: Plugin
    {
        name: "osm"
        PluginParameter { name: "osm.mapping.highdpi_tiles"; value: true }
        PluginParameter { name: "osm.mapping.offline.directory"; value: cachePath }
        PluginParameter { name: "osm.mapping.cache.directory"; value: cachePath }
    }

    <... nevermind ...>
}

所以调试说一切都好,财产也通过了。但是在使用此自定义目录中的地图后,没有新的磁贴。

但是,如果我手动输入value: "C:/111/" - 一切正常,目录会补充新的缓存切片。

可能是什么问题?

感谢您提前!

1 个答案:

答案 0 :(得分:0)

如果有人有兴趣你可以解决这样的问题:

C ++方面:

QVariantMap params
{
    {"osm.mapping.highdpi_tiles", YOUR_CUSTOM_VALUE},
    {"osm.mapping.offline.directory", YOUR_CUSTOM_VALUE},
    {"osm.mapping.cache.directory", YOUR_CUSTOM_VALUE}
};

QQuickView *view = new QQuickView;
view->setSource(QUrl(QStringLiteral("qrc:/qml/OSMView.qml")));
QObject *item = (QObject *) view->rootObject();
QMetaObject::invokeMethod(item, "initializePlugin", Q_ARG(QVariant, QVariant::fromValue(params)));

QML方面:

Item
{
    id: osmMain    
    property variant parameters

    function initializePlugin(pluginParameters)
    {
        var parameters = new Array;
        for(var prop in pluginParameters)
        {
            var parameter = Qt.createQmlObject('import QtLocation 5.6; PluginParameter{ name: "'+ prop + '"; value: "' + pluginParameters[prop] + '"}', map)
            parameters.push(parameter)
        }
        osmMain.parameters = parameters
        map.plugin = Qt.createQmlObject('import QtLocation 5.6; Plugin{ name: "osm"; parameters: osmMain.parameters }', osmMain)
    }

    Map { id: map <...> }

<...>

}