Newer
Older
stamp-2022 / koki / map.html
@Numakura Yuma Numakura Yuma on 11 Jul 2023 945 bytes Update map.html
<!DOCTYPE html>
<html lang="ja">
<head>
<title>geogessor</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="stamp.css">
<link rel="stylesheet" href="src/leaflet.css" /><!-- (1) -->

<script src="src/leaflet.js"></script>
<script src="singleclick.js"></script>
<script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
<style type="text/css">

<!--
div#mymap {width: 70vw; height: 60vh; margin: 0 auto;}	/* (2) */
-->
</style>
</head>

<body>
	
<h1>geogessor<span id="title"></span></h1>
<p>写真挿入場所</p>
<p>
<button id="start" type="button">START</button>
<button id="stop" type="button">STOP</button>
</p>
<div id="mymap"></div>		<!-- (3) -->
<!-- #mymap であるdivを配置したあとで (4) -->
<script type="text/javascript" src="map.js" charset="utf-8"></script>

<h2>選択肢</h2>
<p>
<button id="reset" type="button">RESET</button>
</p>


</body>
</html>