-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
30 lines (28 loc) · 1.19 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title></title>
<link rel="stylesheet" href="https://playground.qlik.com/playground/resources/autogenerated/qlik-styles.css">
</head>
<body>
<div id="container" style="margin: auto; width: 1500px; height: 900px;"></div>
<script type="text/javascript" src="/node_modules/playground-js-api/dist/playground-js-api.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/1.6.9/topojson.min.js"></script>
<script src="http://datamaps.github.io/scripts/0.5.0/datamaps.world.js"></script>
<!-- IMPORTANT: having requirejs before d3/datamaps will result in errors! -->
<script type="text/javascript" src="https://playground.qlik.com/playground/resources/assets/external/requirejs/require.js"></script>
<script type="text/javascript" src="/resources/script.js"></script>
<script type="text/javascript">
window.map = new Datamap({
element: document.getElementById('container'),
fills: {
defaultFill: 'lightgrey',
OCEAN: 'blue'
}
});
main();
</script>
</body>
</html>