subsurface/mobile-widgets/qml/MapWidget.qml
Lubomir I. Ivanov a73a56284c map: add placeholder MapWidget.qml in mobile-widgets/qml
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
2017-07-28 07:31:11 -07:00

21 lines
259 B
QML

import QtQuick 2.0
import QtLocation 5.3
import QtPositioning 5.3
Rectangle {
id: mapParent
anchors.fill: parent
width: 512
height: width
Plugin {
id: mapPlugin
name: "esri"
}
Map {
anchors.fill: parent
plugin: mapPlugin
zoomLevel: 1
}
}