[installation] Init with inital config for global

This commit is contained in:
2025-10-30 15:08:17 +01:00
commit 7640b452ed
3678 changed files with 2200095 additions and 0 deletions

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<seiscomp>
<plugin name="mbtiles">
<extends>global</extends>
<configuration>
<group name="map">
<group name="osm">
<description>
Configuration parameters specific to the OpenStreetMap (OSM)
tile store. Also add 'mbtiles' to &quot;plugins&quot;, the
store URL to &quot;map.location&quot; and 'osm' to
&quot;map.type&quot; for using OSM tile.
stores.
</description>
<parameter name="tileSize" type="uint" default="256" unit="px">
<description>
Edge length of the square tiles received from the server.
</description>
</parameter>
<parameter name="maxLevel" type="uint" default="10" range="0:19">
<description>
Maximum available/allowed tile level. OSM servers
typically serve map tiles up to level 19.
</description>
</parameter>
<parameter name="cacheDir" type="directory" options="read">
<description>
Path of an optional cache directory. If specified,
downloaded tiles will we cached to speed up requests and
to save network bandwidth.
</description>
</parameter>
<parameter name="cacheDuration" type="int" unit="s" default="86400">
<description>
Number of seconds a cached tile is valid. Cache files
older than the specified number of seconds are reloaded
from the tile server upon request. Use a negative value
to indicated an unlimited cache duration.
</description>
</parameter>
</group>
</group>
</configuration>
</plugin>
</seiscomp>