forked from gsi-cyberjapan/gsimaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
159 lines (64 loc) · 4.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="ja">
<head>
<!--INSERT-BASE-->
<link rel="shortcut icon" href="http://portal.cyberjapan.jp/favicon.ico" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0, ,user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>地理院地図</title>
<link rel="stylesheet" href="leaflet-0.7.3/leaflet.css" />
<script src="leaflet-0.7.3/leaflet-src.js"></script>
<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css"/>
<script type="text/javascript" src="jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="jquery/ZeroClipboard2.0.2/ZeroClipboard.js"></script>
<script type="text/javascript" src="jquery/jquery.xdomainrequest.min.js"></script>
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery/jquery.ui.touch-punch.js"></script>
<link rel="stylesheet" type="text/css" href="jquery/colorpicker/jquery.simple-color-picker.css"/>
<script type="text/javascript" src="jquery/colorpicker/jquery.simple-color-picker.js"></script>
<script type="text/javascript" src="jquery/ah-placeholder/jquery.ah-placeholder.js"></script>
<script type="text/javascript" src="js/proj4js-combined.js"></script>
<link rel="stylesheet" type="text/css" href="leaflet-plugin/leaflet.label/leaflet.label-gsi.css"/>
<script type="text/javascript" src="leaflet-plugin/leaflet.label/leaflet.label.js"></script>
<link rel="stylesheet" type="text/css" href="leaflet-plugin/Control.MiniMap/Control.MiniMap-gsi.css"/>
<script type="text/javascript" src="leaflet-plugin/Control.MiniMap/Control.MiniMap-gsi.js"></script>
<script type="text/javascript" src="leaflet-plugin/TileLayer.GeoJSON/TileLayer.GeoJSON-gsi.js"></script>
<script type="text/javascript" src="leaflet-plugin/leaflet-omnivore/leaflet-omnivore.min.js"></script>
<link rel="stylesheet" type="text/css" href="leaflet-plugin/leaflet.draw/leaflet.draw-gsi.css"/>
<script type="text/javascript" src="leaflet-plugin/leaflet.draw/leaflet.draw-gsi.js"></script>
<script type="text/javascript" src="leaflet-plugin/leaflet-hash/leaflet-hash-gsi.js"></script>
<link rel="stylesheet" type="text/css" href="css/gsimaps.css"/>
<script type="text/javascript" src="js/gsimaps.js"></script>
<noscript>
<div class="noscript">
このページではJavaScriptを使用しています。JavaScriptを有効にして下さい。
</div>
</noscript>
<!-- ここから地図共有時使用 ※変更・削除しないでください -->
<script type="text/javascript">
/*INSERT-SCRIPT*/
</script>
<!-- ここまで地図共有時使用 -->
</head>
<body>
<div id="header" class="logo_s">
<div class="logoarea"><a href=""><!-- replace with your logo <img id="logoimage" src="image/logo_s.png"> --></a></div>
<form name="search_f" id="search_f" autocomplete="off">
<input name="query" id="query" value="" type="search" placeholder="例:剱岳 / 金沢市木ノ新保町 / 35度0分0秒 135度0分0秒 / 35.00 135.00 / 54SUE83694920">
</form>
</div>
<div id="topmessage"></div>
<div id="map"></div>
<a id="footerbtn" href="javascript:void(0);"><img src="image/system/footer_up.png" width="96" height="12"></a>
<div id="footer">
<div class="item_frame item_start"><span class="heading">住所:</span><span id="address">----</span><span class="mini_comment">(付近の住所。正確な所属を示すとは限らない。)</span></div>
<div class="item_frame"><span id="latlng_60">----</span></div>
<div class="item_frame"><span id="latlng_10">----</span> <span class="heading">ズーム:</span><span id="current_zoom"></span></div>
<div class="item_frame"><span class="heading">UTMポイント:</span><span id="utm_point">----</span></div>
<div class="item_frame"><span class="heading">標高:</span><span id="elevation">----</span></div>
<!-- <div class="item_frame item_end"><span class="heading">2万5千分1地形図名:</span><span id="zumei">----</span></div> -->
<a class="normalbutton footer_description_btn" target="_blank" href="http://maps.gsi.go.jp/help/howtouse.html#h2-3">表示値の説明</a>
</div>
</body>
</html>