-
Notifications
You must be signed in to change notification settings - Fork 4
/
mapTests.html
52 lines (45 loc) · 1.49 KB
/
mapTests.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
<!DOCTYPE html>
<html>
<head>
<title class="setTitle"></title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="eCourses Author, Title" name="description">
<!-- Bootstrap -->
<link href="css/bootstrap_plus.css" rel="stylesheet" media="screen">
<link href="css/graphics_and_svg.css" rel="stylesheet">
<link href="css/learning-objective.css" rel="stylesheet">
<link href="css/eCourse-master.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span6 leftCol">
<h2 class="setTitle"></h2>
<p>TBD... not yet implemented</p>
<div id="plot0"><p>0. Single contour plot</p></div>
<div id="map1"><p>1. Map contour plot</p></div>
<div id="mapLabels"><p>2. Map and labels</p></div>
</div>
<div class="span6 rightCol">
<div id="mapLine"><p>3. Map and associated line graph</p></div>
<div id="mapOver"><p>4. Map with overlay graph</p></div>
</div>
</div>
</div>
<script src="js/jquery-latest.js"></script>
<script src="js/toc-structure.js"></script>
<script src="js/eCourse-master.js"></script>
<script src="js/d3.v2.min.js"></script>
<script src="js/widgets.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
//<div id="widgetTarget0"><p>0. Single contour plot</p></div>
var svg0 = new MakeSVGContainer(
{node: d3.select("#plot0"),
maxWid: 550,
maxHt: 450
}
);
</script>
</body>
</html>