<!DOCTYPE html>
<html lang="ja">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>マップ: 距離と面積計測</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="https://unpkg.com/@turf/turf@6/turf.min.js"></script>
<style type="text/css">
<!--
div#mymap {width: 90vw; height: 80vh; margin: 0 auto;}
#info {background: pink;}
button {font-size: 200%;} /* タブレット等指先タップ用に大きく */
-->
</style>
</head>
<body>
<h1>折れ線の距離と面積を計る</h1>
<h2 id="info">順次クリックしてください(SHIFTクリックで終了)</h2>
<p>
<button type="button" id="undo">1つ取消</button>
<button type="button" id="finish">終了</button>
</p>
<div id="mymap"></div>
<script type="text/javascript" src="l.js" charset="utf-8"></script>
</body>
</html>