map: add placeholder MapWidget.qml in mobile-widgets/qml

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
Lubomir I. Ivanov 2017-07-14 17:53:08 +03:00 committed by Dirk Hohndel
parent e6ee87efec
commit a73a56284c

View file

@ -0,0 +1,21 @@
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
}
}