import QtQuick 2.0 import QtLocation 5.3 import QtPositioning 5.3 Item { readonly property var esriMapTypeIndexes: { "STREET": 0, "SATELLITE": 1 }; Plugin { id: mapPlugin name: "esri" } Map { id: map anchors.fill: parent plugin: mapPlugin zoomLevel: 1 Component.onCompleted: { map.activeMapType = map.supportedMapTypes[esriMapTypeIndexes.SATELLITE]; } } }