我试图Map
在 QML 5.7 中渲染一个空的,以便绘制地理定位的折线。但是,没有插件可用于提供地图数据:
Map {
anchors.fill:parent
plugin: Plugin {
name: "osm"
Component.onCompleted: console.log('a',availableServiceProviders.length)
}
MapPolyline {
line.color: "#299FE7"; line.width: 3
path: parent.points
}
Timer {
running:true; interval:1000
onTriggered: console.log('b',parent.supportedMapTypes.length)
}
}
上述输出:
qml: a 0
qml: b 0
为什么我没有任何可用的插件,我怎样才能让一个工作?