diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-11-21 14:23:04 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-11-21 23:12:08 -0800 |
commit | 12d5a1e9aadc26ddd4aceadb96234bc4f378b39e (patch) | |
tree | 4439ed01f8695ed9ddbe377c6266d482c2aff4b4 /app/forms/RouteAddressForm.ui.qml | |
parent | dd12df5cffa9f2f8b674ce963d4e404e3f6fa824 (diff) |
navigation: qml: remove start address and use current GPS location
Change RouteAddress form to use start location from current GPS
coordinate instead of entering a start address.
Bug-AGL: SPEC-1068
Change-Id: Id1a42ba409d24e527e613b67b9ac4583aff92ed4
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/forms/RouteAddressForm.ui.qml')
-rw-r--r-- | app/forms/RouteAddressForm.ui.qml | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/app/forms/RouteAddressForm.ui.qml b/app/forms/RouteAddressForm.ui.qml index 3f98dc0..5e43e7f 100644 --- a/app/forms/RouteAddressForm.ui.qml +++ b/app/forms/RouteAddressForm.ui.qml @@ -44,12 +44,9 @@ import QtQuick.Controls 1.4 import QtQuick.Layouts 1.2 Item { - property alias fromStreet: fromStreet - property alias fromCountry: fromCountry property alias toStreet: toStreet property alias toCity: toCity property alias toCountry: toCountry - property alias fromCity: fromCity property alias goButton: goButton property alias clearButton: clearButton property alias cancelButton: cancelButton @@ -92,44 +89,6 @@ Item { anchors.fill: parent Label { - id: label1 - text: qsTr("From") - font.bold: true - anchors.horizontalCenter: parent.horizontalCenter - Layout.columnSpan : 2 - } - - Label { - id: label2 - text: qsTr("Street") - } - - TextField { - id: fromStreet - Layout.fillWidth: true - } - - Label { - id: label3 - text: qsTr("City") - } - - TextField { - id: fromCity - Layout.fillWidth: true - } - - Label { - id: label7 - text: qsTr("Country") - } - - TextField { - id: fromCountry - Layout.fillWidth: true - } - - Label { id: label6 text: qsTr("To") font.bold: true |