52 lines
2.0 KiB
HTML
52 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>Leaflet.Control.FullScreen Demo</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" />
|
|
<style type="text/css">
|
|
#map { width: 700px; height: 433px; }
|
|
.fullscreen-icon { background-image: url(icon-fullscreen.png); }
|
|
/* one selector per rule as explained here : http://www.sitepoint.com/html5-full-screen-api/ */
|
|
#map:-webkit-full-screen { width: 100% !important; height: 100% !important; z-index: 99999; }
|
|
#map:-ms-fullscreen { width: 100% !important; height: 100% !important; z-index: 99999; }
|
|
#map:full-screen { width: 100% !important; height: 100% !important; z-index: 99999; }
|
|
#map:fullscreen { width: 100% !important; height: 100% !important; z-index: 99999; }
|
|
.leaflet-pseudo-fullscreen { position: fixed !important; width: 100% !important; height: 100% !important; top: 0px !important; left: 0px !important; z-index: 99999; }
|
|
</style>
|
|
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js"></script>
|
|
<script src="Control.FullScreen.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="map"></div>
|
|
|
|
<script>
|
|
var base = new L.TileLayer('http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png', {
|
|
maxZoom: 19,
|
|
subdomains: 'abcd',
|
|
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> © <a href="http://cartodb.com/attributions">CartoDB</a>'
|
|
});
|
|
|
|
var map = new L.Map('map', {
|
|
layers: [base],
|
|
center: new L.LatLng(48.5, -4.5),
|
|
zoom: 5,
|
|
fullscreenControl: true,
|
|
fullscreenControlOptions: { // optional
|
|
title:"Show me the fullscreen !",
|
|
titleCancel:"Exit fullscreen mode"
|
|
}
|
|
});
|
|
|
|
// detect fullscreen toggling
|
|
map.on('enterFullscreen', function(){
|
|
if(window.console) window.console.log('enterFullscreen');
|
|
});
|
|
map.on('exitFullscreen', function(){
|
|
if(window.console) window.console.log('exitFullscreen');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|