]> git.openstreetmap.org Git - chef.git/blob - cookbooks/wiki/templates/default/mw-ext-MultiMaps.inc.php.erb
Add CyclOSM tile layer to wiki maps
[chef.git] / cookbooks / wiki / templates / default / mw-ext-MultiMaps.inc.php.erb
1 <?php
2 # DO NOT EDIT - This file is being maintained by Chef
3
4 require_once "$IP/extensions/MultiMaps/MultiMaps.php";
5
6 # Array of String. Array containing all the mapping services that will be made available to the user.
7 # First value - default service, which will be used if the service is not in the parameters
8 # Values may be a valid name of class based on class BaseMapService or some string and an array if they
9 # denote different tiles within a BaseMapService
10 $egMultiMaps_MapServices = [
11   'Leaflet',
12   'cyclosm' => [
13     'service' => 'Leaflet',
14     'attribution' => '&copy; <a href="https://osm.org/copyright">OpenStreetMap contributors</a>. Tiles style by <a href="https://www.cyclosm.org/" target="_blank">CyclOSM</a> hosted by <a href="https://openstreetmap.fr/" target="_blank">OpenStreetMap France</a>',
15     'source' => 'https://{s}.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
16   ],
17   'cycle' => [
18     'service' => 'Leaflet',
19     'attribution' => '&copy; <a href="https://osm.org/copyright">OpenStreetMap contributors</a>. Tiles courtesy of <a href="https://www.thunderforest.com/" target="_blank">Andy Allan</a>',
20     'source' => 'https://tile.thunderforest.com/cycle/{z}/{x}/{y}.png?apikey=<%= @thunderforest_key %>',
21   ],
22   'transport' => [
23     'service' => 'Leaflet',
24     'attribution' => '&copy; <a href="https://osm.org/copyright">OpenStreetMap contributors</a>. Tiles courtesy of <a href="https://www.thunderforest.com/" target="_blank">Andy Allan</a>',
25     'source' => 'https://tile.thunderforest.com/transport/{z}/{x}/{y}.png?apikey=<%= @thunderforest_key %>',
26   ],
27   'oepnv' => [
28     'service' => 'Leaflet',
29     'attribution' => '&copy; <a href="https://osm.org/copyright">OpenStreetMap contributors</a>. Tiles courtesy of <a href="https://memomaps.de/" target="_blank">MeMoMaps</a>',
30     'source' => 'https://tileserver.memomaps.de/tilegen/{z}/{x}/{y}.png',
31   ],
32   'humanitarian' => [
33     'service' => 'Leaflet',
34     'attribution' => '&copy; <a href="https://osm.org/copyright">OpenStreetMap contributors</a>. Tiles style by <a href="https://www.hotosm.org/" target="_blank">Humanitarian OpenStreetMap team</a> hosted by <a href="https://openstreetmap.fr/" target="_blank">OpenStreetMap France</a>',
35     'source' => 'https://tile.openstreetmap.fr/hot/{z}/{x}/{y}.png'
36   ],
37 ];