summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/MapWidget.qml
blob: 6e3476ae1ce45d98c8097d2ddf240725a2548838 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
	}
}