leaflet.jsとOSMで現在地を取得しマップ上にマーカーを表示する方法
2024/03/23
leaflet.jsとOpenStreetMapで現在位置の経度緯度を取得しマップ上にマーカーを設置したかった。以下にサンプルページと実装方法をメモ。
リファレンス
https://leafletjs.com/reference.html#map-locate
サンプル
https://taitan916.info/sample/osm/gps.php
ソース
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.6.0/leaflet.css" /> <script src="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.6.0/leaflet.js"></script> <script src="//code.jquery.com/jquery-latest.js"></script> <script> var map = L.map('map_canvas'); var tileLayer = L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',{ attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>', maxZoom: 19 }); tileLayer.addTo(map); //現在地が取得できた場合の処理 function gpsSuccess(e) { L.marker(e.latlng).addTo(map).bindPopup("現在地").openPopup(); } //現在地が取得できなかった場合の処理 function gpsError(e) { alert("現在地を取得できませんでした。" + e.message); } //現在地の取得 map.locate({setView: true, maxZoom: 16, timeout: 20000}); //成功した場合 map.on('locationfound', gpsSuccess); //失敗した場合 map.on('locationerror', gpsError); </script>
注意点
GoogleMapAPIの時と同様に位置情報を取得するにはHTTPS接続の必要がある。例えば以下はサンプルと同じファイルだがHTTPS接続ではない為、位置情報が取得できない。
https://taitan916.info/sample/osm/gps.php
また、leaflet.jsをCDN呼び出しする場合は以下に変更する(前までの記事ではHTTPSが用意されていなかった)。
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.6.0/leaflet.css" /> <script src="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.6.0/leaflet.js"></script> <script src="//code.jquery.com/jquery-latest.js"></script>
関連記事
-
Leafletで「leaflet-search」プラグインを導入してマーカーの検索機能を追加する方法
LeafletとOpenStreetMapでマップ上にマーカーを複数設置した上で ...
-
Leafletで「leaflet-control-geocoder」プラグインを導入して住所検索機能を追加する方法
LeafletとOpenStreetMapでマップを表示させ、テキストボックスに ...
-
Leafletで表示したマップにジェスチャーハンドリングを追加する方法(Leaflet.GestureHandling)
GoogleMapをズームする際にPCだと「Ctrl+スクロール」、スマホだと「 ...
-
Leafletにてマップ移動時にURLに座標を自動付与する「leaflet-view-meta」プラグインの利用方法
Googleマップだとマップを移動した際、URLに座標(経度緯度)が付与されるた ...
-
Leafletにアイコン(ボタン)を設置できる「Leaflet.EasyButton」プラグインの利用方法
先日「leaflet-tag-filter-button」プラグインのCDN呼び ...