0

我有显示谷歌地图页面的 webView 元素。我只需要显示地图,没有搜索输入和其他内容。我不知道除了这样的事情:

Rectangle {
    x: 0
    y: 51
    height: 549
    //something like android clipChildren property

    WebView {
        id: mapView
        x:0
        y: -51
        width: 800
        height: 600
        url: ""
        onUrlChanged: {
            mapView.reload()
        }
    }
}

但我不知道可以做到这一点的财产。

4

1 回答 1

2

也许使用剪辑:真;QtQuick 中每个项目上都存在的属性?

于 2013-06-17T11:46:43.040 回答