Bulmaで画面いっぱいにLeafletの地図を表示
is-fullheight
のHero
を使う
HTML
hero
クラスを持つsection
を作成します。idはmap
にしました
<section id="map" class="hero is-fullheight">
</section>
JS
var map = L.map('map').setView([51.505, -0.09], 13);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
L.marker([51.5, -0.09]).addTo(map)
.bindPopup('A pretty CSS3 popup.<br> Easily customizable.')
.openPopup();
Author And Source
この問題について(Bulmaで画面いっぱいにLeafletの地図を表示), 我々は、より多くの情報をここで見つけました https://qiita.com/zoonaka/items/c763c577418e60526a3f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .