This file is indexed.

/usr/share/qt5/doc/qtlocation/qtlocation-index.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
119
120
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qtlocation.qdoc -->
  <title>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>Qt Location</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="#overview">Overview</a></li>
<li class="level1"><a href="#getting-started">Getting Started</a></li>
<li class="level2"><a href="#submodules">Submodules</a></li>
<li class="level1"><a href="#api-references-and-examples">API References and Examples</a></li>
<li class="level1"><a href="#plugin-references-and-parameters">Plugin References and Parameters</a></li>
<li class="level2"><a href="#implementing-new-back-ends-and-porting">Implementing New Back-Ends and Porting</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">Qt Location</h1>
<span class="subtitle"></span>
<!-- $$$qtlocation-index.html-description -->
<div class="descr"> <a name="details"></a>
<p>The Qt Location API helps you create viable mapping solutions using the data available from some of the popular location services.</p>
<p>The release of this API with Qt 5.5 is a Technology Preview. This implies a soft API freeze for Qt Location.</p>
<a name="overview"></a>
<h2 id="overview">Overview</h2>
<p>The Qt Location API enables you to:</p>
<ul>
<li>access and present map data,</li>
<li>support touch gesture on a specific area of the map,</li>
<li>query for a specific geographical location and route,</li>
<li>add additional layers on top, such as polylines and circles,</li>
<li>and search for places and related images.</li>
</ul>
<a name="getting-started"></a>
<h2 id="getting-started">Getting Started</h2>
<p>To load the Qt Location module, add the following statement to your .qml files</p>
<pre class="cpp">import <span class="type">QtPositioning</span> <span class="number">5.5</span>
import <span class="type"><a href="qtlocation-module.html">QtLocation</a></span> <span class="number">5.5</span></pre>
<p>The <a href="qtlocation-module.html">QtLocation</a> QML module depends on the QtPositioning QML module. Therefore every QML application that imports the <a href="qtlocation-module.html">QtLocation</a> QML module must always import the QtPositioning module as well.</p>
<p>For C++ projects include the header appropriate for the current use case, for example applications using routes may use</p>
<pre class="cpp"><span class="preprocessor">#include &lt;QGeoRoute&gt; </span></pre>
<p>The .pro file should have the <i>location</i> keyword added</p>
<pre class="cpp">QT <span class="operator">+</span><span class="operator">=</span> location</pre>
<a name="submodules"></a>
<h3 >Submodules</h3>
<p>The API is split into sub-modules, which provide QML and C++ interfaces for specific purposes. They focus mainly on Map and Place information. The required position data can be retrieved using the QtPositioning module.</p>
<a name="places"></a>
<h4 >Places</h4>
<p>The Places submodule is the natural complement to Positioning, providing a source of geographical data about Places of Interest (POI). Besides the source information, the API provides information about the location, size, and other related information about a POI. The Places API can also retrieve images, reviews, and other content related to a place.</p>
<div class="table"><table class="generic">
 <tr valign="top" class="odd"><td >Places introduction:</td><td ><a href="location-places-qml.html">for QML</a></td><td ><a href="location-places-cpp.html">for C++</a></td></tr>
</table></div>
<a name="maps-and-navigation"></a>
<h4 >Maps and Navigation</h4>
<p>The module provides the QML and C++ alternatives for maps and navigation. The C++ alternative provides utility classes to get geocoding (finding a geographic coordinate from a street address) and navigation (including driving and walking directions) information, whereas its QML counterpart provides UI components to render the information.</p>
<div class="table"><table class="generic">
 <tr valign="top" class="odd"><td >Maps and Navigation introduction:</td><td ><a href="location-maps-qml.html">for QML</a></td><td ><a href="location-maps-cpp.html">for C++</a></td></tr>
</table></div>
<a name="api-references-and-examples"></a>
<h2 id="api-references-and-examples">API References and Examples</h2>
<p>The following are lists of the classes and UI components provided by the module, with example applications to demonstrate their usage:</p>
<div class="table"><table class="generic">
 <tr valign="top" class="odd"><td ><a href="qtlocation-qmlmodule.html">QML API Reference</a></td><td >Full list of QML components in the Qt Location API</td></tr>
<tr valign="top" class="even"><td ><a href="qtlocation-cpp.html">C++ API Reference by domain</a></td><td >Full list of C++ classes and methods of the Qt Location APIs sorted by domain</td></tr>
<tr valign="top" class="odd"><td ><a href="qtlocation-module.html">C++ API Reference</a></td><td >Full list of C++ classes and methods of the Qt Location APIs</td></tr>
<tr valign="top" class="even"><td ><a href="qtlocation-examples.html">Example Apps</a></td><td >Examples demonstrating use of the Qt Location APIs</td></tr>
<tr valign="top" class="odd"><td ><a href="qml-location5-maps.html">Maps and Navigation Tutorial</a></td><td >Tutorial introducing the QML Maps Types</td></tr>
</table></div>
<a name="plugin-references-and-parameters"></a>
<h2 id="plugin-references-and-parameters">Plugin References and Parameters</h2>
<p>Information about plugins, important notes on their usage, parameters that can be provided to influence their behavior.</p>
<div class="table"><table class="annotated">
<tr class="odd topAlign"><td class="tblName"><p><a href="location-plugin-here.html">Qt Location HERE Plugin</a></p></td><td class="tblDescr"><p>Uses the relevant services provided by HERE.</p></td></tr>
<tr class="even topAlign"><td class="tblName"><p><a href="location-plugin-mapbox.html">Qt Location Mapbox Plugin</a></p></td><td class="tblDescr"><p>Uses Mapbox for location services.</p></td></tr>
<tr class="odd topAlign"><td class="tblName"><p><a href="location-plugin-osm.html">Qt Location Open Street Map Plugin</a></p></td><td class="tblDescr"><p>Uses Open Street Map and related services.</p></td></tr>
</table></div>
<a name="implementing-new-back-ends-and-porting"></a>
<h3 >Implementing New Back-Ends and Porting</h3>
<p>For systems integrators and distributors, information related to making Qt Location available for a new platform.</p>
<div class="table"><table class="generic">
 <tr valign="top" class="odd"><td ><a href="qtlocation-geoservices.html">GeoServices</a></td><td >Information about the Qt Location GeoServices plugins</td></tr>
<tr valign="top" class="even"><td ><a href="location-places-backend.html">Places</a></td><td >Information for places backend implementors</td></tr>
<tr valign="top" class="odd"><td ><a href="qtlocation-changes.html">API changes</a></td><td >Information about QML API changes since 5.4</td></tr>
</table></div>
</div>
<!-- @@@qtlocation-index.html -->
        </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>