Update Leaflet.Control.FullScreen to version 1.6.0

This commit is contained in:
David Molineus
2020-12-18 10:44:16 +01:00
parent 1baae82984
commit bddadbe22a
7 changed files with 54 additions and 57 deletions

View File

@@ -61,6 +61,9 @@ map.on('enterFullscreen', function(){
map.on('exitFullscreen', function(){
console.log('exited fullscreen');
});
// you can also toggle fullscreen from map object
map.toggleFullScreen();
```
Where ?