我有显示谷歌地图页面的 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()
}
}
}
但我不知道可以做到这一点的财产。