Movatterモバイル変換


[0]ホーム

URL:



Astro logo

dayjournal memo

Total 1041 articles!!

maplibregljs

MapLibre GL JS #042 - クリック位置の経緯度取得

Yasunori Kirimoto's avatar


画像



クリック位置の経緯度を取得するメモ。



画像



script.js

// MapTiler読み込みconstmap=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,});// コントロール関係表示map.addControl(new maplibregl.NavigationControl());map.on('click',function (e) {// クリック位置経緯度取得constlat= e.lngLat.lat;constlng= e.lngLat.lng;// 経緯度表示alert('lat: '+ lat+', lng: '+ lng);});



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



book

book







[8]
ページ先頭

©2009-2025 Movatter.jp