commit 80fef68ab2845ebb9068dd542fac72291c89aa0e
parent c69515f5cc91dbdc304648e242c3d95a3e95b882
Author: Sergej Orlov <wladimirych@gmail.com>
Date: Wed, 14 Nov 2018 08:06:48 +0100
[layers] opencycle, openoutdoors: reenable print and jnx, remove proxy, do not send key
Diffstat:
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/layers.js b/src/layers.js
@@ -419,28 +419,28 @@ export default function getLayers() {
title: 'OpenCycleMap',
description: '<a href="https://www.opencyclemap.org/docs/">(Info and key)</a>',
isDefault: false,
- layer: L.tileLayer('https://proxy.nakarte.me/https/{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}.png',
+ layer: L.tileLayer('https://{s}.tile.thunderforest.com/cycle/{z}/{x}/{y}.png',
{
code: 'Ocm',
isOverlay: false,
scaleDependent: true,
- print: false,
- jnx: false,
- shortName: 'opencyclemap'
+ print: true,
+ jnx: true,
+ shortName: 'opencyclemap',
}
)
},
{
title: 'OSM Outdoors',
isDefault: false,
- layer: L.tileLayer('https://proxy.nakarte.me/https/{s}.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png',
+ layer: L.tileLayer('https://{s}.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png',
{
code: 'Oso',
isOverlay: false,
scaleDependent: true,
- print: false,
- jnx: false,
- shortName: 'osm_outdoors'
+ print: true,
+ jnx: true,
+ shortName: 'osm_outdoors',
}
)
},