1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +01:00

Documented vector tile attribute

This commit is contained in:
Martin Tůma 2018-12-08 18:32:27 +01:00
parent 044d88b9b1
commit 6bf10dd99b
2 changed files with 15 additions and 1 deletions

View File

@ -143,6 +143,20 @@
<url>https://a.osm.rrze.fau.de/osmhd/$z/$x/$y.png</url>
<tile pixelRatio="2">
</map>
</pre>
<p>In case of vector tile images (PBF), set the type attribute of
the <i>tile</i> tag to "vector". This will adjust the pixel ratio
of the tile to the pixel ratio of the display device.</p>
<pre>
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;map xmlns="http://www.gpxsee.org/map/1.3"&gt;
&lt;name>MapTiler&lt;/name&gt;
&lt;url>https://maps.tilehosting.com/data/v3/$z/$x/$y.pbf?key=apikey&lt;/url>
&lt;tile type="vector"/&gt;
&lt;zoom max="14"/&gt;
&lt;/map&gt;
</pre>
<p>The map URL can be also a local file URL (<i>file:</i> scheme).</p>

View File

@ -153,7 +153,7 @@
<p class="date">Dec 8 2018</p>
<h4>Version 7.0</h4>
<ul>
<li>Added support for PBF vector maps (requires <a href="https://github.com/tumic0/QtPBFImagePlugin">QtPbfImagePlugin</a>).</li>
<li>Added support for PBF vector maps (using <a href="https://github.com/tumic0/QtPBFImagePlugin">QtPbfImagePlugin</a>).</li>
<li>Changed user data/config paths locations.</li>
<li>Added Turkish localization.</li>
<li>Minor bug fixes (WMTS, graphs)</li>