-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (27 loc) · 906 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="body">
<div id="footer">
<h2 id="title"></h2>
d3.geo.azimuthal
<div class="hint">drag to rotate the origin</div>
<div><select>
<option value="equalarea">equalarea</option>
<option value="equidistant">equidistant</option>
<option value="gnomonic">gnomonic</option>
<option value="orthographic" selected>orthographic</option>
<option value="stereographic">stereographic</option>
</select></div>
</div>
</div>
<script type="text/javascript" src="d3/d3.js"></script>
<script type="text/javascript" src="d3/d3.geo.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>