subsurface/mobile-widgets/qml/MapWidget.qml
Lubomir I. Ivanov ccaaff42a3 mapwidget.qml: enumerate the ESRI map types of interest
Add a local "enumeration" (object) for the two possibly map types
of interest: SATELLITE and STREET.

Use SATELLITE by default.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
2017-07-28 07:31:11 -07:00

24 lines
385 B
QML

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];
}
}
}