-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
52 lines (49 loc) · 1.84 KB
/
Copy pathmap.html
File metadata and controls
52 lines (49 loc) · 1.84 KB
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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>amaoto map</title>
<link rel="icon" href="img/favicon16.png" type="image/png" sizes="16x16">
<link rel="icon" href="img/favicon32.png" type="image/png" sizes="32x32">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<!-- HTMLファイル内の<head>セクション -->
<link rel="stylesheet" href="css/styles.css">
<style>
</style>
</head>
<body>
<div id="logo-container">
<img id="app-logo" src="img/amaoto.svg" alt="logo">
<div class="left-icon icon-font" onclick="toMain()">
<i class="fa fa-arrow-circle-left"></i>
</div>
</div>
<!-- モーダルウィンドウのHTML -->
<div class="modal">
<div class="modal_bg js-modal-close"></div>
<div class="modalScroll">
<div class="modal_content">
<!-- YouTubeの埋め込みコードをここに追加 -->
<iframe id="youtubePlayer" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
<!-- 地図 -->
<div id="map"></div>
<div id="spinner" class="spinner"></div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="script/main.js"></script>
<script>
initMap(); //地図の初期化
setCurrentLocation();//現在地の取得
//モーダルウィンドウを閉じる
$(".js-modal-close").on("click", function () {
fadeoutModal();
return false;
});
</script>
</body>
</html>