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

Updated map file format description

This commit is contained in:
Martin Tůma 2017-09-16 00:25:55 +02:00
parent 6278a577e8
commit 92b02236e7

View File

@ -123,13 +123,14 @@
</tr>
</table>
<p>The file format is one map entry per line, consisting of the map name and
tiles URL delimited by a TAB character. The tile X and Y coordinates are
replaced with <code>$x</code> and <code>$y</code> in the URL and the zoom
level is replaced with <code>$z</code>. An example map file could look like:</p>
<p>The file format is one map entry per line, consisting of the map name,
tiles URL and an optional maximal zoom level delimited by a TAB character.
The tile X and Y coordinates are replaced with <code>$x</code> and
<code>$y</code> in the URL and the zoom level is replaced with
<code>$z</code>. An example map file could look like:</p>
<pre>
Map1 http://tile.server.com/map/$z/$x/$y.png
Map1 http://tile.server.com/map/$z/$x/$y.png 15
Map2 http://mapserver.org/map/$z-$x-$y
</pre>