summaryrefslogtreecommitdiff
path: root/examples/location/places/forms/SearchBoundingBox.qml
blob: a1a54fb6cec977e7bf8fc7bb9d955ab5670c35c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtPositioning

SearchBoundingBoxForm {
    property var searchRegion
    signal changeSearchBoundingBox(var coordinate, real widthDeg, real heightDeg)
    signal closeForm()

    goButton.onClicked: {
        var coordinate = QtPositioning.coordinate(parseFloat(latitude.text),
                                                  parseFloat(longitude.text));
        if (coordinate.isValid)
            changeSearchBoundingBox(coordinate,parseFloat(widthDeg.text),parseFloat(heightDeg.text))
    }

    clearButton.onClicked: {
        latitude.text = ""
        longitude.text = ""
        widthDeg.text = ""
        heightDeg.text = ""
    }

    cancelButton.onClicked: closeForm()

    Component.onCompleted: {
        latitude.text = "" + searchRegion.center.latitude
        longitude.text = "" + searchRegion.center.longitude
        widthDeg.text = searchRegion.width ? "" + searchRegion.width : "0.0"
        heightDeg.text = searchRegion.height ? "" + searchRegion.height: "0.0"
    }
}