5ffe207921
* Use https everywhere for OSM tile URLs Use https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png instead of http://{s}.tile.osm.org/{z}/{x}/{y}.png http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png * Use https everywhere for OSM attribution link Use https://www.openstreetmap.org/copyright instead of http://www.openstreetmap.org/copyright http://osm.org/copyright
46 lines
1.4 KiB
HTML
46 lines
1.4 KiB
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="../leaflet-include.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="map"></div>
|
|
|
|
<script>
|
|
|
|
var osmUrl = 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
osmAttrib = '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors',
|
|
osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib}),
|
|
osm2 = new L.TileLayer(osmUrl, {attribution: 'Hello world'});
|
|
|
|
var map = new L.Map('map').addLayer(osm).setView(new L.LatLng(50.5, 30.512), 15);
|
|
|
|
var marker = new L.Marker(new L.LatLng(50.5, 30.505));
|
|
map.addLayer(marker);
|
|
marker.bindPopup("Leaflet is designed with simplicity, performance and usability in mind. It works efficiently across all major desktop and mobile platforms out of the box, taking advantage of HTML5 and CSS3 on modern browsers while still being accessible on older ones.").openPopup();
|
|
|
|
var marker2 = new L.Marker(new L.LatLng(50.502, 30.515));
|
|
map.addLayer(marker2);
|
|
|
|
var layersControl = new L.Control.Layers({
|
|
'OSM': osm,
|
|
'OSM2': osm2
|
|
}, {
|
|
'Some marker': marker,
|
|
'Another marker': marker2
|
|
});
|
|
|
|
map.addControl(layersControl);
|
|
map.addControl(new L.Control.Scale());
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|