mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-12-08 21:26:14 +00:00
Now that tile.openstreetmap.org supports HTTP/2 + HTTP/3 the old (a|b|c).tile.openstreetmap.org is no longer recommended. Use tile.openstreetmap.org directly is faster and will likely result in a better cache hit ratio. Signed-off-by: Grant Slater <git@firefishy.com> Signed-off-by: Grant Slater <git@firefishy.com>
44 lines
977 B
HTML
44 lines
977 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Leaflet debug page</title>
|
|
|
|
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
|
|
|
<link rel="stylesheet" href="../css/screen.css" />
|
|
|
|
<script src="../../dist/leaflet-src.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div id="map"></div>
|
|
|
|
<script>
|
|
// Check the 'center' setting of the scroll-wheel, double-click and touch-zoom
|
|
// handlers
|
|
|
|
var osmUrl = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
osmAttrib = '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
|
|
osm = L.tileLayer(osmUrl, {minZoom: 14, attribution: osmAttrib}),
|
|
latlng = new L.LatLng(51.1788409,-1.82618);
|
|
|
|
var map = new L.Map('map', {
|
|
center: latlng,
|
|
zoom: 15,
|
|
layers: [osm],
|
|
scrollWheelZoom: 'center', // zoom to center regardless where mouse is
|
|
doubleClickZoom: 'center',
|
|
touchZoom: 'center'
|
|
});
|
|
|
|
L.marker(latlng).addTo(map);
|
|
|
|
L.control.scale().addTo(map);
|
|
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|