dayjournal memo

Total 974 articles!!

MapLibre GL JS #025 - 回転角度設定

Yasunori Kirimoto's avatar


画像



回転角度を設定するメモ。



画像



script.js

// MapTiler読み込み
const map = new maplibregl.Map({
    container: 'map',
    style: 'https://api.maptiler.com/maps/jp-mierune-streets/style.json?key=[APIキー]',
    center: [139.767, 35.681],
    zoom: 11,
    // 回転角度設定
    bearing: 180
});

// コントロール関係表示
map.addControl(new maplibregl.NavigationControl());



MapLibre GL JSを手軽に始めるビルド環境公開しています。
maplibregljs-starter



book

Q&A