Source

Target

Commits (1)
Showing with 87 additions and 23 deletions
/****************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 2.0
Rectangle {
width: image.width
Image {
id: image
anchors.centerIn: parent
source: "marker.png"
Text{
y: parent.height/10
width: parent.width
color: "white"
font.bold: true
font.pixelSize: 14
horizontalAlignment: Text.AlignHCenter
text: index
}
}
}
examples/location/places_list/marker.png

1.03 KB

......@@ -5,7 +5,7 @@ QT += quick qml network positioning location
SOURCES = main.cpp
RESOURCES += \
resources.qrc
places_list.qrc
target.path = $$[QT_INSTALL_EXAMPLES]/location/places_list
INSTALLS += target
......
......@@ -40,14 +40,14 @@
//! [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
property variant startCoordinate: QtPositioning.coordinate(-27.46778, 153.02778)
height: 640
property variant startCoordinate: QtPositioning.coordinate( 59.9485, 10.7686) // The Qt Company in Oslo
//! [Initialize Plugin]
Plugin {
......@@ -79,12 +79,15 @@ Rectangle {
anchors.fill: parent
model: searchModel
delegate: Component {
Column {
Text { text: title }
Text { text: place.location.address.text }
Row {
spacing: 5
Marker { height: parent.height }
Column {
Text { text: title; font.bold: true }
Text { text: place.location.address.text }
}
}
}
spacing: 10
}
//! [Places ListView]
......
<RCC>
<qresource prefix="/">
<file>marker.png</file>
<file>places_list.qml</file>
<file>Marker.qml</file>
</qresource>
</RCC>
examples/location/places_map/marker.png

2.29 KB | W: 0px | H: 0px

examples/location/places_map/marker.png

1.03 KB | W: 0px | H: 0px

examples/location/places_map/marker.png
examples/location/places_map/marker.png
examples/location/places_map/marker.png
examples/location/places_map/marker.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -5,7 +5,7 @@ QT += quick qml network positioning location
SOURCES = main.cpp
RESOURCES += \
places_map_resource.qrc
places_map.qrc
target.path = $$[QT_INSTALL_EXAMPLES]/location/places_map
INSTALLS += target
......
......@@ -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 }
}
}
}
......
src/location/doc/images/places-list.png

27.6 KB | W: 0px | H: 0px

src/location/doc/images/places-list.png

17.8 KB | W: 0px | H: 0px

src/location/doc/images/places-list.png
src/location/doc/images/places-list.png
src/location/doc/images/places-list.png
src/location/doc/images/places-list.png
  • 2-up
  • Swipe
  • Onion skin
src/location/doc/images/places-map.png

164 KB

......@@ -32,7 +32,7 @@
\brief The Places Map example demonstrates how to search for and display a list of places
on a map using a MapItemView
\image places-map.jpg
\image places-map.png
The example displays a map of the current location or, if no position is
available, it uses Brisbane/Australia. Subsequently a search for places
......
......@@ -155,7 +155,7 @@
\li
\snippet places_map/places_map.qml Places MapItemView
\li
\inlineimage places-map.jpg
\inlineimage places-map.png
\endtable
\note For simplicty's sake we have assumed that every search result is of
......