HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
// This sample uses 3rd party Proj4js JavaScript library to transform coordinates
3
// See https://docs.anychart.com/Maps/Map_Projections to learn more.
4
5
var dataSet = anychart.data.set([
6
{id: "AU.CT", value: 15, title: "Australian Capital Territory"},
7
{id: "AU.VI", value: 23, title: "Victoria"},
8
{id: "AU.WA", value: 86, title: "Western Australia"},
9
{id: "AU.QL", value: 16, title: "Queensland"},
10
{id: "AU.NS", value: 32, title: "New South Wales"},
11
{id: "AU.NT", value: 64, title: "Northern Territory"},
12
{id: "AU.TS", value: 28, title: "Tasmania"}
13
]);
14
15
var dataSetForSeries = dataSet.mapAs({id: "id"});
16
17
var australiaMap = anychart.map();
18
australiaMap.geoData(anychart.maps.australia);
19
20
var series = australiaMap.choropleth(dataSetForSeries);
21
series.geoIdField("code_hasc");
22
23
24
var unboundRegions = australiaMap.unboundRegions();
25
// Sets fill with opacity.
26
unboundRegions.fill("#0D47A1", 0.2);
27
28
australiaMap.container("container");
29
australiaMap.draw();
30
});