]> git.mxchange.org Git - friendica-addons.git/blob - openstreetmap/config/openstreetmap.config.php
Merge pull request #778 from MrPetovan/task/move-config-to-php-array
[friendica-addons.git] / openstreetmap / config / openstreetmap.config.php
1 <?php
2
3 // Warning: Don't change this file! It only holds the default config values for this addon.
4 // Instead overwrite these config values in config/addon.config.php in your Friendica directory
5
6 return [
7         'openstreetmap' => [
8                 // tmsserver (String)
9                 // This points to the tile server you want to use. Use the full URL, with protocol (http/s) and trailing slash.
10                 'tmsserver' => 'https://www.openstreetmap.org',
11
12                 // nomserver (String)
13                 'nomserver' => 'https://nominatim.openstreetmap.org/search.php',
14
15                 // zoom (Integer)
16                 // The default zoom level on the map.
17                 // 1 will show the whole world and 18 is the highest zoom level available.
18                 'zoom' => 16,
19
20                 // marker (Integer)
21                 'marker' => 0,
22         ],
23 ];