-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) · 2.48 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- SEO対策多少はした方がいいのだけど?? -->
<meta name="description" content="鳥取の交通をレイヤー表示した地図です" />
<meta name="keywords" content="鳥取,路線図,バス,日本交通,日ノ丸自動車,バスマップ,バス路線図,busmap" />
<title>tottori transportation map</title>
<!-- 表示の為の設定 -->
<!-- 以下をするとスマホ向けにちょっとだけ描画が改良される -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- //--------------------------------------------- -->
<!-- ここから最優先CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- //--------------------------------------------- -->
<!-- ここから各プラグイン -->
<!-- controlLocateプラグイン、現在地表示で使用 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/L.Control.Locate.min.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/L.Control.Locate.min.js"
charset="utf-8"></script>
<!-- //--------------------------------------------- -->
<!-- easyボタン アイコンは4.7.0に変更 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.css">
<script src="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.js"></script>
<!-- 上のはアイコン使う -->
<script src="add/leaflet-hash.js"></script>
<!-- 上のhash.jsは外部プラグイン -->
<!-- ここから独自 -->
<link rel="stylesheet" href="add/main.css">
<style>
.icon1 {
width: 30px;
height: 30px;
border-radius: 15px;
border: 3px solid rgb(250, 250, 250);
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
background-color: rgb(204, 51, 166);
}
</style>
<script src="./index.js"></script>
</head>
<body onload="init()">
<div id="map01"></div>
<!-- 今後は、地図の初期位置を青谷や用瀬など、場所入れ替えられると良いね -->
</body>
</html>