1/***************************************************************************
2  main.qml
3  --------
4  Date                 : Nov 2017
5  Copyright            : (C) 2017 by Peter Petrik
6  Email                : zilolv at gmail dot com
7 ***************************************************************************
8 *                                                                         *
9 *   This program is free software; you can redistribute it and/or modify  *
10 *   it under the terms of the GNU General Public License as published by  *
11 *   the Free Software Foundation; either version 2 of the License, or     *
12 *   (at your option) any later version.                                   *
13 *                                                                         *
14 ***************************************************************************/
15import QtQuick 2.7
16import QtQuick.Controls 2.2
17import QgsQuick 0.1 as QgsQuick
18import "."
19
20ApplicationWindow {
21  id: window
22  visible: true
23  visibility: "Maximized"
24  title: "QGIS Quick Test App"
25
26  QgsQuick.MapCanvas {
27    id: mapCanvas
28
29    height: parent.height
30    width: parent.width
31
32    mapSettings.project: __project
33    mapSettings.layers: __layers
34  }
35}
36