subsurface/mobile-widgets/qml/MapWidget.qml

30 lines
464 B
QML
Raw Normal View History

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