forked from gsi-cyberjapan/gsimaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_3d.html
54 lines (44 loc) · 1.71 KB
/
index_3d.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
<!DOCTYPE html>
<html lang="ja">
<head>
<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, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>地理院地図3D</title>
<script src="js.lib/leaflet-0.7.3/leaflet-src.js"></script>
<script type="text/javascript" src="./js.lib/jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="./js.lib/jquery/jquery-ui.js"></script>
<link rel="stylesheet" href="./js.lib/jquery/jquery-ui.css">
<script type="text/javascript" src="./js.lib/three/three.min.js"></script>
<script type="text/javascript" src="./js.lib/three/TrackballControls.js"></script>
<script type="text/javascript" src="./js/index_3d.js"></script>
<style>
html, body {
height : 100%;
width : 100%;
font-family : "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
font-size : 62.5%;
}
body {
padding : 0;
margin : 0;
}
table {
border-collapse :collapse;
border :1px solid #333;
font-size : 16px;
}
td {
text-align :left;
vertical-align :middle;
border-collapse :collapse;
border :1px solid #333;
padding :5px;
}
</style>
</head>
<body onload="Init('frame');" style="margin:0 auto;">
<div id="frame"></div>
</body>
</html>