I work on a qml map project and use osm plugin for offline map displaying. Here is some code about it.
Plugin{
id: mapPlugin
name: 'osm'
PluginParameter {
name: 'osm.mapping.offline.directory'
value: 'qrc:/offline_tiles/'
}
}
Map{
id: map1
anchors.fill: parent
zoomLevel: 15
plugin:mapPlugin
center {
// The Qt Company in Oslo
latitude: 59.9485
longitude: 10.7686
}
}
I have to display 3D glope map but i couldn't any doc/tutorial about it. Someone can help for that how can i do 3D map in QML Map. Can you help me pls.