We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
`
<div id="map"></div> <script> var base = new L.TileLayer('http://{s}.tile.openstreetmap.org/{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>
please help me. Im in the middle of something... IT WORKS PERFECTLY WITH THE BELOW TILE.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
`
<title>Leaflet.Control.FullScreen Demo</title> <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='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js'></script>please help me. Im in the middle of something...
IT WORKS PERFECTLY WITH THE BELOW TILE.
The text was updated successfully, but these errors were encountered: