地図を表示するためのライブラリ ⚫ そのため、Mapbox GL JS向けのドキュメントでも基本的な所は 共通点があるので、困ったことがあれば検索対象にするのも良い ◼ 地図を表示するだけなら、かなりシンプルに書ける P.27 【Index.html】スタイルシートとライブラリの読み込み <link rel="stylesheet" href="https://unpkg.com/
[email protected]/dist/maplibre-gl.css" /> <script src="https://unpkg.com/
[email protected]/dist/maplibre-gl.js"></script> <div id=“mapid”></div> ※地図を表示させる場所 【maplib.js】地図表示エリアの設定(init内) this.map = new maplibregl.Map({ "container": 'mapid', "style": this.styles[this.selectStyle], "maxZoom": Conf.maxZoom, "zoom": Conf.initZoom, "antialias": true, "hash": true, "center": Conf.initView });