Leafletのプラグイン「contextmenu」を使用すると、地図に右クリックメニューを追加することができます。
実装すると以下のようになります。
地図の上と、マーカーの上で右クリックした場合、表示するメニューを変更することができます。
目次
1.全体のコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
<!DOCTYPE html> <html> <head> <title>Leaflet Plugin contextmenu</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ==" crossorigin=""> <script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw==" crossorigin=""></script> <!-- plugin --> <link rel="stylesheet" href="css/leaflet.contextmenu.min.css" /> <script src="js/leaflet.contextmenu.min.js"></script> <!-- plugin --> <style type="text/css"> <!-- #mapid { height: 400px; width: 600px} --> </style> </head> <body> <div id="mapid"></div> <script> // Mapの基本設定 var map = L.map('mapid',{ center: [35.7122, 139.8117], zoom: 15, minZoom: 13, maxZoom: 16, contextmenu: true, contextmenuWidth: 180, contextmenuItems: [{ text: '緯度経度を表示', callback: showLatLng }, { text: 'この地点を地図の中央に指定', callback: setCenterMap }] }); function showLatLng (e) { alert(e.latlng); } function setCenterMap (e) { map.panTo(e.latlng); } var markerContextMenu = { contextmenu: true, contextmenuItems: [{ text: '詳細を表示', index: 0, callback: showMarkerInfo }, { separator: true, index: 1 }] } L.marker([35.7115,139.8117], markerContextMenu).addTo(map); function showMarkerInfo(e){ alert(e.latlng); } L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', { attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' }).addTo(map); </script> </body> </html> |
2.解説
地図を描画するまでの解説は、leaflet入門1に記載しています。
2−1.ファイルの配置
contextmenuの本体は GitHubからダウンロードできます。
GitHubから取得したcss・jsファイルを以下のように配置します。
index.html
css/leaflet.contextmenu.min.css
js/leaflet.contextmenu.min.js
2−2.プラグインの読み込み
2-1で配置した css・jsファイルを読み込みます。
1 2 3 4 |
<!-- plugin --> <link rel="stylesheet" href="css/leaflet.contextmenu.min.css" /> <script src="js/leaflet.contextmenu.min.js"></script> <!-- plugin --> |
2−3.contextmenuの設定(マップ全体)
L.mapオブジェクト作成時に、contextmenu の設定を行います。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
var map = L.map('mapid',{ center: [35.7122, 139.8117], zoom: 15, minZoom: 13, maxZoom: 16, contextmenu: true, contextmenuWidth: 180, contextmenuItems: [{ text: '緯度経度を表示', callback: showLatLng }, { text: 'この地点を地図の中央に指定', callback: setCenterMap }] }); |
contextmenu: true
コンテキストメニューを表示します。
contextmenuWidth: 180
コンテキストメニューの幅を設定します。
contextmenuItems: [{}]
コンテキストメニューに表示するアイテムを設定します。
各アイテムには、コールバック関数を指定することができます。例えば、メニューをクリックした際に、実行したい処理を定義することができます。
2−4.contextmenuの設定(マーカー)
マーカーを右クリックした際に表示する、コンテキストメニューを設定します。
マーカーオブジェクト作成時に、引数でオプションを設定します。
1 2 3 4 5 6 7 8 9 10 11 12 |
var markerContextMenu = { contextmenu: true, contextmenuItems: [{ text: '詳細を表示', index: 0, callback: showMarkerInfo }, { separator: true, index: 1 }] } L.marker([35.7115,139.8117], markerContextMenu).addTo(map); |
これで、contextmenuを使用することができます。
3.その他のおすすめプラグイン
その他のメニュー系のおすすめプラグインは、こちらに記載しています。
Leaflet入門|おすすめプラグイン(メニュー表示)
すべてのおすすめプラグインは、こちらに記載しています。
Leaflet入門|おすすめプラグイン