Newer
Older
2021-taka-game / map / domon / domon.html
@taka taka on 27 Nov 2021 1 KB update
<!DOCTYPE html>
<html lang="ja">
<head>
<title>マップ: My First Map!</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../src/leaflet.css" />	<!-- (1) -->
<script src="../src/leaflet.js"></script>
<style type="text/css">
<!--
div#mymap {width: 45vw; height: 50vh; margin: 0 auto; display: inline-block;}	/* (2) */
div#memap {width: 45vw; height: 50vh; margin: 0 auto; display: inline-block;}
div.section{width: 100%; text-align: center;}
-->
</style>
</head>

<body>
<h1>同期マップ</h1>
<p>
緯度<input type="text" id="lat_input" /><br>
経度<input type="text" id="lng_input" /><br>
倍率<input type="text" id="zoom_input" /><br>
</p>
<div class="section">
<div id="mymap"></div>
<div id="memap"></div>
</div>

<div>
    <h1>参考文献</h1>
    <a href="https://www.achiachi.net/blog/leaflet/get_latlngzoom">見ている場所の座標を取得する方法</a>
</div>

<!-- #mymap であるdivを配置したあとで (4) -->
<script type="text/javascript" src="domon.js" charset="utf-8"></script>
</body>
</html>