dayjournal memo

Total 975 articles!!

MapLibre GL JS #004 - OpenStreetMapのベクトルタイル表示

Yasunori Kirimoto's avatar


画像



背景にOpenStreetMapのベクトルタイルを表示するメモ。



画像



script.js

// OpenStreetMap読み込み
const map = new maplibregl.Map({
    container: 'map',
    style: 'https://tile2.openstreetmap.jp/styles/osm-bright/style.json',
    center: [139.767, 35.681],
    zoom: 11,
});

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



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



book

Q&A