Ich möchte Grayscale Karten nutzen. Wenn ich das manuell mache, schreibe ich:
Code:
L.tileLayer.grayscale('https://{s}.tile.osm.org/{z}/{x}/{y}.png', {attribution: '© <a href="https://osm.org/copyright">OpenStreetMap</a> contributors'}).addTo(map);
Wie, wo muss ich ähnliches in Leaflet (netzmacht) eintragen?
Ich habe die css/js dafür geladen. Selbst wenn ich es in die leaflet_map_js.html5 schreibe, geht es nicht.
Code:
layers.grayscale=L.tileLayer.grayscale('https://{s}.tile.osm.org/{z}/{x}/{y}.png', {});
layers.grayscale.addTo(map);
Danke.