summaryrefslogtreecommitdiff
path: root/examples/location/places_map/places_map.qml
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2015-07-10 13:55:17 +0200
committerMichal Klocek <michal.klocek@theqtcompany.com>2015-07-13 10:33:33 +0000
commita990d458f752aedb8b91aeafb4a62bb7c8ed4c50 (patch)
tree6cb8bc9ccaf4d55e9c3325029fb501f24800ab09 /examples/location/places_map/places_map.qml
parent5e71363485b3760601544f6365b039ef3b986123 (diff)
downloadqtlocation-a990d458f752aedb8b91aeafb4a62bb7c8ed4c50.tar.gz
Update places-list and places-map examples
Change position used in examples to Oslo. Update marker icons to be the same as in mapviewer example. Update screenshots, so they contain osm map. Add marker icon to places_list, so it does not look so boring. Add places title to places_map, so it is more readable. Change-Id: Ia321aa8577e77f76468c504cd4e6ce877712089c Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'examples/location/places_map/places_map.qml')
-rw-r--r--examples/location/places_map/places_map.qml22
1 files changed, 11 insertions, 11 deletions
diff --git a/examples/location/places_map/places_map.qml b/examples/location/places_map/places_map.qml
index d59ac642..7ff3706a 100644
--- a/examples/location/places_map/places_map.qml
+++ b/examples/location/places_map/places_map.qml
@@ -40,13 +40,13 @@
//! [Imports]
import QtQuick 2.0
-import QtPositioning 5.2
-import QtLocation 5.3
+import QtPositioning 5.5
+import QtLocation 5.5
//! [Imports]
Rectangle {
width: 360
- height: 360
+ height: 640
//! [Initialize Plugin]
Plugin {
@@ -62,7 +62,7 @@ Rectangle {
//! [Current Location]
PositionSource {
id: positionSource
- property variant lastSearchPosition: locationBrisbane
+ property variant lastSearchPosition: locationOslo
active: true
updateInterval: 120000 // 2 mins
onPositionChanged: {
@@ -80,15 +80,15 @@ Rectangle {
//! [Current Location]
//! [PlaceSearchModel]
- property variant locationBrisbane: QtPositioning.coordinate(-27.47, 153.025)
+ property variant locationOslo: QtPositioning.coordinate( 59.93, 10.76)
+
PlaceSearchModel {
id: searchModel
plugin: myPlugin
searchTerm: "Pizza"
- //initially show Brisbane
- searchArea: QtPositioning.circle(locationBrisbane)
+ searchArea: QtPositioning.circle(locationOslo)
Component.onCompleted: update()
}
@@ -99,7 +99,7 @@ Rectangle {
id: map
anchors.fill: parent
plugin: myPlugin;
- center: locationBrisbane
+ center: locationOslo
zoomLevel: 13
MapItemView {
@@ -110,9 +110,9 @@ Rectangle {
anchorPoint.x: image.width * 0.5
anchorPoint.y: image.height
- sourceItem: Image {
- id: image
- source: "marker.png"
+ sourceItem: Column {
+ Image { id: image; source: "marker.png" }
+ Text { text: title; font.bold: true }
}
}
}