navigation: qml: change default toAddress 83/12083/1
authorMatt Ranostay <matt.ranostay@konsulko.com>
Wed, 22 Nov 2017 06:15:55 +0000 (22:15 -0800)
committerMatt Ranostay <matt.ranostay@konsulko.com>
Wed, 22 Nov 2017 07:12:08 +0000 (23:12 -0800)
Since Norway address doesn't make sense for most demos change this
to Golden Gate Park, California, US

Bug-AGL: SPEC-1068
Change-Id: I648ac417089e8fe04b4f9af29901dcec497e65e6
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
app/mapviewer.qml

index 079b240..9b25166 100644 (file)
@@ -136,20 +136,15 @@ ApplicationWindow {
     //! [geocode0]
     Address {
         id :fromAddress
-        street: "Sandakerveien 116"
-        city: "Oslo"
-        country: "Norway"
-        state : ""
-        postalCode: "0484"
     }
     //! [geocode0]
 
     Address {
         id: toAddress
-        street: "Holmenkollveien 140"
-        city: "Oslo"
-        country: "Norway"
-        postalCode: "0791"
+        street: "Golden Gate Park"
+        city: "San Francisco"
+        state: "California"
+        country: "US"
     }
 
     InputPanel {