leaflet.fullscreen
Version:
Simple plugin for Leaflet that adds fullscreen button to your maps.
40 lines (33 loc) • 903 B
CSS
.leaflet-fullscreen-icon {
background-image: url('icon-fullscreen.svg');
background-size: 26px 52px;
}
.leaflet-fullscreen-icon.leaflet-fullscreen-on {
background-position: 0 -26px;
}
.leaflet-touch .leaflet-fullscreen-icon {
background-position: 2px 2px;
}
.leaflet-touch .leaflet-fullscreen-icon.leaflet-fullscreen-on {
background-position: 2px -24px;
}
/* Safari still needs this vendor-prefix: https://caniuse.com/mdn-css_selectors_fullscreen */
/* stylelint-disable-next-line selector-no-vendor-prefix */
.leaflet-container:-webkit-full-screen {
width: 100% ;
height: 100% ;
z-index: 99999;
}
.leaflet-container:fullscreen {
width: 100% ;
height: 100% ;
z-index: 99999;
}
.leaflet-pseudo-fullscreen {
position: fixed ;
width: 100% ;
height: 100% ;
top: 0 ;
left: 0 ;
z-index: 99999;
}