This QML component will be used to provide a context menu for the QML map widget. Include the file in QRC and test it's creation in MapWidget.qml. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
10 lines
126 B
QML
10 lines
126 B
QML
// SPDX-License-Identifier: GPL-2.0
|
|
import QtQuick 2.7
|
|
|
|
Item {
|
|
Rectangle {
|
|
width: 100; height: width
|
|
color: "white"
|
|
}
|
|
}
|