リーフレット用のHTML5フルスクリーンプラグイン。
フルスクリーンをオンとオフに切り替えるためのボタンを提供するには:
// Create a new map with a fullscreen button:
var map = new L . Map ( 'map' , {
fullscreenControl : true ,
// OR
fullscreenControl : {
pseudoFullscreen : false // if true, fullscreen to page width and height
}
} ) ;
// or, add to an existing map:
map . addControl ( new L . Control . Fullscreen ( ) ) ;
プラグインは、フルスクリーンボタンを使用しないことを選択した場合でも、常に使用可能なL.Map
にいくつかのメソッドを追加します。
map . isFullscreen ( ) // Is the map fullscreen?
map . toggleFullscreen ( ) // Either go fullscreen, or cancel the existing fullscreen.
// `fullscreenchange` Event that's fired when entering or exiting fullscreen.
map . on ( 'fullscreenchange' , function ( ) {
if ( map . isFullscreen ( ) ) {
console . log ( 'entered fullscreen' ) ;
} else {
console . log ( 'exited fullscreen' ) ;
}
} ) ;
フルスクリーン制御テキストを変更するには:
map . addControl ( new L . Control . Fullscreen ( {
title : {
'false' : 'View Fullscreen' ,
'true' : 'Exit Fullscreen'
}
} ) ) ;
Leaflet.fullscreenは、MapboxプラグインCDNを介して入手できます。これをコピーするだけです。
< script src =' https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js ' > </ script >
< link href =' https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/leaflet.fullscreen.css ' rel =' stylesheet ' />
npm install && make
Protip watch
インストールして、すべての変更を実行する必要なくwatch make
を実行できるようにすることができます。
リーフレット1.0以降がサポートされています。以前のバージョンは機能する可能性がありますが、テストされていません。