@@ -3,6 +3,10 @@ var tfAddition = '';
3
3
if ( ghenv . thunderforest . api_key )
4
4
tfAddition = '?apikey=' + ghenv . thunderforest . api_key ;
5
5
6
+ var mapilionAddition = '' ;
7
+ if ( ghenv . mapilion . api_key )
8
+ mapilionAddition = '?key=' + ghenv . mapilion . api_key ;
9
+
6
10
var osAPIKey = 'mapsgraph-bf48cc0b' ;
7
11
if ( ghenv . omniscale . api_key )
8
12
osAPIKey = ghenv . omniscale . api_key ;
@@ -21,10 +25,6 @@ var omniscale = L.tileLayer('https://maps.omniscale.net/v2/' +osAPIKey + '/style
21
25
attribution : osmAttr + ', © <a href="https://maps.omniscale.com/">Omniscale</a>'
22
26
} ) ;
23
27
24
- var openMapSurfer = L . tileLayer ( 'http://korona.geog.uni-heidelberg.de/tiles/roads/x={x}&y={y}&z={z}' , {
25
- attribution : osmAttr + ', <a href="http://korona.geog.uni-heidelberg.de/contact.html">GIScience Heidelberg</a>'
26
- } ) ;
27
-
28
28
// Not an option as too fast over limit.
29
29
// var mapbox= L.tileLayer('https://{s}.tiles.mapbox.com/v4/peterk.map-vkt0kusv/{z}/{x}/{y}' + (retinaTiles ? '@2x' : '') + '.png?access_token=pk.eyJ1IjoicGV0ZXJrIiwiYSI6IkdFc2FJd2MifQ.YUd7dS_gOpT3xrQnB8_K-w', {
30
30
// attribution: osmAttr + ', <a href="https://www.mapbox.com/about/maps/">© MapBox</a>'
@@ -50,6 +50,11 @@ var thunderNeighbourhood = L.tileLayer('https://{s}.tile.thunderforest.com/neigh
50
50
attribution : osmAttr + ', <a href="https://thunderforest.com/maps/neighbourhood/" target="_blank">Thunderforest Neighbourhood</a>'
51
51
} ) ;
52
52
53
+ var kurvigerLiberty = L . tileLayer ( 'https://{s}-tiles.mapilion.com/raster/styles/kurviger-liberty/{z}/{x}/{y}{r}.png' + mapilionAddition , {
54
+ subdomains : [ 'a' , 'b' , 'c' , 'd' , 'e' ] ,
55
+ attribution : osmAttr + ',© <a href="https://kurviger.de/" target="_blank">Kurviger</a> © <a href="https://mapilion.com/attribution" target="_blank">Mapilion</a> <a href="http://www.openmaptiles.org/" target="_blank">© OpenMapTiles</a>'
56
+ } ) ;
57
+
53
58
var wrk = L . tileLayer ( 'http://{s}.wanderreitkarte.de/topo/{z}/{x}/{y}.png' , {
54
59
attribution : osmAttr + ', <a href="http://wanderreitkarte.de" target="_blank">WanderReitKarte</a>' ,
55
60
subdomains : [ 'topo4' , 'topo' , 'topo2' , 'topo3' ]
@@ -78,9 +83,9 @@ var availableTileLayers = {
78
83
"TF Cycle" : thunderCycle ,
79
84
"TF Outdoors" : thunderOutdoors ,
80
85
"TF Neighbourhood" : thunderNeighbourhood ,
86
+ "Kurviger Liberty" : kurvigerLiberty ,
81
87
"Lyrk" : lyrk ,
82
88
"WanderReitKarte" : wrk ,
83
- "OpenMapSurfer" : openMapSurfer ,
84
89
"Sorbian Language" : sorbianLang ,
85
90
"OpenStreetMap.de" : osmde
86
91
} ;
0 commit comments