is there 3-D Mapping in QtLocation Map?
Unsolved
QML and Qt Quick
-
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. Or is there any different way or any lib to do this and how can i use that?