import QtQuick 2.11 import QtQuick.Window 2.11 import QtLocation 5.5 import "../../../src/WimaView" Window { visible: true width: 640 height: 480 title: qsTr("Hello World") Map{ id: map anchors.fill: parent plugin: Plugin { name: "osm" // "mapboxgl", "esri", ... // specify plugin parameters if necessary // PluginParameter { // name: // value: // } } Repeater{ model: survey SphericalSurveyMapVisual{ map: map } } } }