Leaflet/debug/map/layer_remove_add.html

38 lines
963 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Leaflet debug page</title>
<link rel="stylesheet" href="../../dist/leaflet.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/screen.css" />
<script src="../leaflet-include.js"></script>
</head>
<body>
<div id="map"></div>
<button id="removeAdd">Remove and Add Layer</button>
2017-02-04 23:17:51 +08:00
<script>
map = L.map('map', { center: [0, 0], zoom: 3, maxZoom: 4 });
var osm = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
}).addTo(map);
L.DomUtil.get('removeAdd').onclick = function() {
2016-11-10 18:07:53 +08:00
map.removeLayer(osm);
setTimeout(function() {
2016-11-10 18:07:53 +08:00
map.addLayer(osm);
}, 1000);
};
</script>
</body>
</html>