-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 982 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (29 loc) · 982 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="https://s3-eu-west-1.amazonaws.com/newslabs-geofacts/favicon.png"/>
<title>bbc-tweets</title>
</head>
<body>
<script src="http://d3js.org/d3.v4.min.js"></script>
<script src="d3-3d.js"></script>
<!-- <script src="https://d3js.org/d3.v5.min.js"></script> -->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="scatter.js"></script>
<link rel="stylesheet" href="style.css">
<script>
$.ajax({
url: '/scatter',
method: 'GET',
success: (data) => {
console.log('data', data);
if (data) {
plotScatter(d3, data);
}
}
});
</script>
</body>
</html>