I have got a very basic stamen map
. If I zoom to level 19, the map is not shown.
I think this is because of the max level 18 in the the file http://maps.stamen.com/js/tile.stamen.js.
What can I do, to provide someone to zoom to level 19?
<!DOCTYPE HTML>
<html>
<head>
<title>Eine OSM Karte mit Leaflet</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.1.0/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.1.0/dist/leaflet.js"></script>
<script type="text/javascript" src="http://maps.stamen.com/js/tile.stamen.js"></script>
</head>
<body>
<div style="height: 700px;" id="mapid"></div>
<script>
var mymap = L.map('mapid').setView([50.27264, 7.26469], 13);
var layer = new L.StamenTileLayer("watercolor");
mymap.addLayer(layer);
</script>
toner,terrain,terrain-classic,watercolor
</body>
</html>
Thanks in advance.