This file is indexed.

/usr/share/qt5/doc/qtlocation/qml-qtlocation-mapquickitem.html is in qtlocation5-doc-html 5.5.1-3ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qdeclarativegeomapquickitem.cpp -->
  <title>MapQuickItem QML Type | Qt Location 5.5</title>
  <link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
    <div class="main">
    <div class="main-rounded">
        <div class="navigationbar">
        <ul>
<li>Qt 5.5</li>
<li><a href="qtlocation-index.html">Qt Location</a></li>
<li><a href="qtlocation-qmlmodule.html">QML Types</a></li>
<li>MapQuickItem QML Type</li>
<li id="buildversion">Qt 5.5.1 Reference Documentation</li>
    </ul>
    </div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#properties">Properties</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
<li class="level2"><a href="#positioning-and-sizing">Positioning and Sizing</a></li>
<li class="level2"><a href="#performance">Performance</a></li>
<li class="level2"><a href="#limitations">Limitations</a></li>
<li class="level2"><a href="#example-usage">Example Usage</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">MapQuickItem QML Type</h1>
<span class="subtitle"></span>
<!-- $$$MapQuickItem-brief -->
<p>The <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> type displays an arbitrary Qt Quick object on a Map. <a href="#details">More...</a></p>
<!-- @@@MapQuickItem -->
<div class="table"><table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> Import Statement:</td><td class="memItemRight bottomAlign"> import QtLocation 5.3</td></tr><tr><td class="memItemLeft rightAlign topAlign"> Since:</td><td class="memItemRight bottomAlign">  Qt Location 5.5</td></tr></table></div><ul>
<li><a href="qml-qtlocation-mapquickitem-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="properties"></a>
<h2 id="properties">Properties</h2>
<ul>
<li class="fn"><b><b><a href="qml-qtlocation-mapquickitem.html#anchorPoint-prop">anchorPoint</a></b></b> : QPointF</li>
<li class="fn"><b><b><a href="qml-qtlocation-mapquickitem.html#coordinate-prop">coordinate</a></b></b> : coordinate</li>
<li class="fn"><b><b><a href="qml-qtlocation-mapquickitem.html#sourceItem-prop">sourceItem</a></b></b> : object</li>
<li class="fn"><b><b><a href="qml-qtlocation-mapquickitem.html#zoomLevel-prop">zoomLevel</a></b></b> : real</li>
</ul>
<!-- $$$MapQuickItem-description -->
<a name="details"></a>
<h2 id="details">Detailed Description</h2>
</p>
<p>The <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> type is used to place an arbitrary Qt Quick object on a Map at a specified location and size. Compared to floating an item above the Map, a <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> will follow the panning (and optionally, the zooming) of the Map as if it is on the Map surface.</p>
<p>The <a href="qml-qtlocation-mapquickitem.html#sourceItem-prop">sourceItem</a> property contains the Qt Quick item to be drawn, which can be any kind of visible type.</p>
<a name="positioning-and-sizing"></a>
<h3 >Positioning and Sizing</h3>
<p>The positioning of the <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> on the Map is controlled by two properties: <a href="qml-qtlocation-mapquickitem.html#coordinate-prop">coordinate</a> and <a href="qml-qtlocation-mapquickitem.html#anchorPoint-prop">anchorPoint</a>. If only <a href="qml-qtlocation-mapquickitem.html#coordinate-prop">coordinate</a> is set, it specifies a longitude/latitude coordinate for the item to be placed at. The set coordinate will line up with the top-left corner of the contained item when shown on the screen.</p>
<p>The <a href="qml-qtlocation-mapquickitem.html#anchorPoint-prop">anchorPoint</a> property provides a way to line up the coordinate with other parts of the item than just the top-left corner, by setting a number of pixels the item will be offset by. A simple way to think about it is to note that the point given by <a href="qml-qtlocation-mapquickitem.html#anchorPoint-prop">anchorPoint</a> on the item itself is the point that will line up with the given <a href="qml-qtlocation-mapquickitem.html#coordinate-prop">coordinate</a> when displayed.</p>
<p>In addition to being anchored to the map, the <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> can optionally follow the scale of the map, and change size when the Map is zoomed in or zoomed out. This behaviour is controlled by the <a href="qml-qtlocation-mapquickitem.html#zoomLevel-prop">zoomLevel</a> property. The default behaviour if <a href="qml-qtlocation-mapquickitem.html#zoomLevel-prop">zoomLevel</a> is not set is for the item to be drawn &quot;on the screen&quot; rather than &quot;on the map&quot;, so that its size remains the same regardless of the zoom level of the Map.</p>
<a name="performance"></a>
<h3 >Performance</h3>
<p>Performance of a <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> is normally in the same ballpark as the contained Qt Quick item alone. Overheads added amount to a translation and (possibly) scaling of the original item, as well as a transformation from longitude and latitude to screen position.</p>
<a name="limitations"></a>
<h3 >Limitations</h3>
<p><b>Note: </b>Due to an implementation detail, items placed inside a <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> will have a <code>parent</code> item which is not the <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a>. Refer to the <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> by its <code>id</code>, and avoid the use of <code>anchor</code> in the <code>sourceItem</code>.</p><a name="example-usage"></a>
<h3 >Example Usage</h3>
<p>The following snippet shows a <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a> containing an Image object, to display a Marker on the Map. This strategy is used to show the map markers in the MapViewer example.</p>
<pre class="qml"><span class="type"><a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a></span> {
    <span class="name">id</span>: <span class="name">marker</span>
    <span class="name">anchorPoint</span>.x: <span class="name">image</span>.<span class="name">width</span><span class="operator">/</span><span class="number">4</span>
    <span class="name">anchorPoint</span>.y: <span class="name">image</span>.<span class="name">height</span>

    <span class="name">sourceItem</span>: <span class="name">Image</span> {
        <span class="name">id</span>: <span class="name">image</span>
    }
}</pre>
<p class="centerAlign"><img src="images/api-mapquickitem.png" alt="" /></p><!-- @@@MapQuickItem -->
<h2>Property Documentation</h2>
<!-- $$$anchorPoint -->
<div class="qmlitem"><div class="qmlproto"><div class="table"><table class="qmlname"><tr valign="top" class="odd" id="anchorPoint-prop"><td class="tblQmlPropNode"><p><a name="anchorPoint-prop"></a><span class="name">anchorPoint</span> : <span class="type"><a href="../qtcore/qpointf.html">QPointF</a></span></p></td></tr></table></div></div><div class="qmldoc"><p>This property determines which point on the <a href="qml-qtlocation-mapquickitem.html#sourceItem-prop">sourceItem</a> that will be lined up with the coordinate on the map.</p>
</div></div><!-- @@@anchorPoint -->
<br/>
<!-- $$$coordinate -->
<div class="qmlitem"><div class="qmlproto"><div class="table"><table class="qmlname"><tr valign="top" class="odd" id="coordinate-prop"><td class="tblQmlPropNode"><p><a name="coordinate-prop"></a><span class="name">coordinate</span> : <span class="type"><a href="qml-qtlocation-mapquickitem.html#coordinate-prop">coordinate</a></span></p></td></tr></table></div></div><div class="qmldoc"><p>This property holds the anchor coordinate of the <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a>. The point on the <a href="qml-qtlocation-mapquickitem.html#sourceItem-prop">sourceItem</a> that is specified by <a href="qml-qtlocation-mapquickitem.html#anchorPoint-prop">anchorPoint</a> is kept aligned with this coordinate when drawn on the map.</p>
<p>In the image below, there are 3 MapQuickItems that are identical except for the value of their <a href="qml-qtlocation-mapquickitem.html#anchorPoint-prop">anchorPoint</a> properties. The values of <a href="qml-qtlocation-mapquickitem.html#anchorPoint-prop">anchorPoint</a> for each are written on top of the item.</p>
<p class="centerAlign"><img src="images/api-mapquickitem-anchor.png" alt="" /></p></div></div><!-- @@@coordinate -->
<br/>
<!-- $$$sourceItem -->
<div class="qmlitem"><div class="qmlproto"><div class="table"><table class="qmlname"><tr valign="top" class="odd" id="sourceItem-prop"><td class="tblQmlPropNode"><p><a name="sourceItem-prop"></a><span class="name">sourceItem</span> : <span class="type">object</span></p></td></tr></table></div></div><div class="qmldoc"><p>This property holds the source item that will be drawn on the map.</p>
</div></div><!-- @@@sourceItem -->
<br/>
<!-- $$$zoomLevel -->
<div class="qmlitem"><div class="qmlproto"><div class="table"><table class="qmlname"><tr valign="top" class="odd" id="zoomLevel-prop"><td class="tblQmlPropNode"><p><a name="zoomLevel-prop"></a><span class="name">zoomLevel</span> : <span class="type">real</span></p></td></tr></table></div></div><div class="qmldoc"><p>This property controls the scaling behaviour of the contents of the <a href="qml-qtlocation-mapquickitem.html">MapQuickItem</a>. In particular, by setting this property it is possible to choose between objects that are drawn on the screen (and sized in screen pixels), and those drawn on the map surface (which change size with the zoom level of the map).</p>
<p>The default value for this property is 0.0, which corresponds to drawing the object on the screen surface. If set to another value, the object will be drawn on the map surface instead. The value (if not zero) specifies the zoomLevel at which the object will be visible at a scale of 1:1 (ie, where object pixels and screen pixels are the same). At zoom levels lower than this, the object will appear smaller, and at higher zoom levels, appear larger. This is in contrast to when this property is set to zero, where the object remains the same size on the screen at all zoom levels.</p>
</div></div><!-- @@@zoomLevel -->
<br/>
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2015 The Qt Company Ltd.
   Documentation contributions included herein are the copyrights of
   their respective owners.<br>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br>    Qt and respective logos are trademarks of The Qt Company Ltd.     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>