Leaflet/examples/layers-control-example.html

51 lines
1.5 KiB
HTML
Raw Normal View History

2011-10-14 02:31:50 +08:00
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Layers Control Example</title>
<meta charset="utf-8" />
2012-02-14 23:02:29 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2011-10-14 02:31:50 +08:00
<link rel="stylesheet" href="../dist/leaflet.css" />
</head>
<body>
<div id="map" style="width: 600px; height: 400px"></div>
<script src="../dist/leaflet.js"></script>
<script>
2012-07-26 17:17:40 +08:00
var cities = new L.LayerGroup();
2012-07-26 17:17:40 +08:00
L.marker([39.61, -105.02]).bindPopup('This is Littleton, CO.').addTo(cities),
L.marker([39.74, -104.99]).bindPopup('This is Denver, CO.').addTo(cities),
L.marker([39.73, -104.8]).bindPopup('This is Aurora, CO.').addTo(cities),
L.marker([39.77, -105.23]).bindPopup('This is Golden, CO.').addTo(cities);
2014-04-28 19:16:15 +08:00
var mbAttr = 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
'<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
'Imagery © <a href="http://mapbox.com">Mapbox</a>',
mbUrl = 'https://{s}.tiles.mapbox.com/v3/{id}/{z}/{x}/{y}.png';
2014-04-28 19:16:15 +08:00
var grayscale = L.tileLayer(mbUrl, {id: 'examples.map-20v6611k', attribution: mbAttr}),
2014-09-18 09:05:29 +08:00
streets = L.tileLayer(mbUrl, {id: 'examples.map-i875mjb7', attribution: mbAttr});
2012-07-26 17:17:40 +08:00
var map = L.map('map', {
center: [39.73, -104.99],
zoom: 10,
2014-04-28 19:16:15 +08:00
layers: [grayscale, cities]
2012-07-26 17:17:40 +08:00
});
2012-07-26 17:17:40 +08:00
var baseLayers = {
2014-04-28 19:16:15 +08:00
"Grayscale": grayscale,
"Streets": streets
};
2012-07-26 17:17:40 +08:00
var overlays = {
"Cities": cities
};
2012-07-26 17:17:40 +08:00
L.control.layers(baseLayers, overlays).addTo(map);
2011-10-14 02:31:50 +08:00
</script>
</body>
2012-02-14 23:02:29 +08:00
</html>