Leafletのプラグイン「Leaflet Coordinates Control」を使って、マップにクリックした地点の緯度経度を表示します。
実装すると以下のようになります。
マップの左下に選択した地点の緯度経度が表示されます。
目次
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 |
<!DOCTYPE html> <html> <head> <title>Leaflet Plugin Coordinates Control</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/Control.Coordinates.css" /> <script src="js/Control.Coordinates.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 }); L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', { attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' }).addTo(map); // Coordinates Control var options = { latitudeText: "緯度", // default lat longitudeText: "経度", // default lon precision: 5 // default 4 } var cCtrl = new L.Control.Coordinates(options); cCtrl.addTo(map); map.on('click', function(e) { cCtrl.setCoordinates(e); }); </script> </body> </html> |
2.解説
地図を描画するまでの解説は、leaflet入門1に記載しています。
2−1.ファイルの配置
Leaflet Coordinates Control の本体は GitHubからダウンロードできます。
GitHub-Leaflet Coordinates Control
GitHubから取得したcss・jsファイルを以下のように配置します。
index.html
css/Control.Coordinates.css
js/Control.Coordinates.js
2−2.プラグインの読み込み
2-1で配置した css・jsファイルを読み込みます。
1 2 3 4 |
<!-- plugin --> <link rel="stylesheet" href="css/Control.Coordinates.css" /> <script src="js/Control.Coordinates.js"></script> <!-- plugin --> |
2−3.Coordinates Controlの設定
L.Control.Coordinatesオブジェクトを生成して、L.mapオブジェクトに追加します。
また、L.Control.Coordinatesオブジェクトにはオプションも設定することができます。
1 2 3 4 5 6 7 8 9 |
// Coordinates Control var options = { latitudeText: "緯度", // default lat longitudeText: "経度", // default lon precision: 5 // default 4 } var cCtrl = new L.Control.Coordinates(options); cCtrl.addTo(map); |
オプション
latitudeText:表示する緯度のラベル名(デフォルトは、「lat」)
longitudeText:表示する経度のラベル名(デフォルトは、「lon」)
precision:緯度経度の精度(小数点以下の桁数)
その他のオプションもありますが、GitHubではなく、ソースコード「Control.Coordinates.js」にコメントとして記載されているので興味のある方はそちらをご参照ください。
これでマップに選択した場所の緯度経度を表示することができます。
3.その他のおすすめプラグイン
その他の緯度経度を表示するおすすめプラグインは、こちらに記載しています。
Leaflet入門|おすすめプラグイン(緯度経度の表示)
すべてのおすすめプラグインは、こちらに記載しています。
Leaflet入門|おすすめプラグイン