diff --git a/js/demo.js b/js/demo.js
index 0baee0c..6e28a8a 100644
--- a/js/demo.js
+++ b/js/demo.js
@@ -643,18 +643,12 @@ function setupIsochrone(map, ghIsochrone) {
function createMap(divId) {
let osmAttr = '© OpenStreetMap contributors';
- let omniscale = L.tileLayer.wms('https://maps.omniscale.net/v1/ghexamples-3646a190/tile', {
- layers: 'osm',
- attribution: osmAttr + ', © Omniscale'
- });
-
let osm = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: osmAttr
});
- let map = L.map(divId, {layers: [omniscale]});
+ let map = L.map(divId, {layers: [osm]});
L.control.layers({
- "Omniscale": omniscale,
"OpenStreetMap": osm
}).addTo(map);
return map;