-
Notifications
You must be signed in to change notification settings - Fork 3
/
choropleth_map.html
52 lines (47 loc) · 1.76 KB
/
choropleth_map.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>
<script src="js/vendor/proj4.js"></script>
<script src="../node_modules/anychart/dist/js/anychart-base.min.js"></script>
<script src="../node_modules/anychart/dist/js/anychart-map.min.js"></script>
<script src="../node_modules/anychart/dist/js/anychart-ui.min.js"></script>
<script src="../node_modules/anychart/dist/js/anychart-exports.min.js"></script>
<script src="https://cdn.anychart.com/releases/8.9.0/geodata/countries/australia/australia.js"></script>
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
<script src="../dist/anychart-jquery.min.js"></script>
<link rel="stylesheet" href="../node_modules/anychart/dist/css/anychart-ui.min.css" />
<link rel="stylesheet" href="../node_modules/anychart/dist/fonts/css/anychart-font.min.css" />
<style>
html,
body {
margin: 0;
padding: 0;
}
#container {
width: 800px;
height: 600px;
}
</style>
</head>
<body>
<div id="container"></div>
<script>
$(document).ready(function () {
var data = anychart.data.set([
{ 'id': 'AU.WA', 'value': 300 },
{ 'id': 'AU.JB', 'value': 230 },
{ 'id': 'AU.NS', 'value': 240 },
{ 'id': 'AU.VI', 'value': 275 },
{ 'id': 'AU.NT', 'value': 130 },
{ 'id': 'AU.TS', 'value': 190 },
{ 'id': 'AU.CT', 'value': 100 },
{ 'id': 'AU.SA', 'value': 305 },
{ 'id': 'AU.QL', 'value': 190 }
]);
$('#container').anychart('choropleth', 'anychart.maps.australia', data);
});
</script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/iframe-resizer/3.6.3/iframeResizer.contentWindow.min.js"></script>
</body>
</html>