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
3
// This sample uses 3rd party proj4 component
4
// that makes it possible to set coordinates
5
// for the points and labels on the map and
6
// required for custom projections and grid labels formatting.
7
// See https://docs.anychart.com/Maps/Map_Projections
8
9
var data = [
10
{id: "AU.CT", value: 15},
11
{id: "AU.VI", value: 23},
12
{id: "AU.WA", value: 86},
13
{id: "AU.QL", value: 16},
14
{id: "AU.NS", value: 32},
15
{id: "AU.NT", value: 64},
16
{id: "AU.TS", value: 28},
17
{id: "AU.SA", value: 45}
18
];
19
20
var map = anychart.map();
21
map.geoData(anychart.maps.australia);
22
map.choropleth(data);
23
24
mapScale = map.scale();
25
// Set intervals
26
mapScale.xTicks({interval: 15});
27
mapScale.xMinorTicks({interval: 5});
28
mapScale.yTicks({interval: 15});
29
mapScale.yMinorTicks({interval: 5});
30
31
// enable axes
32
mapAxes = map.axes();
33
mapAxes.enabled(true);
34
mapAxes.ticks(true);
35
mapAxes.minorTicks(true);
36
37
// enable grids
38
map.grids(true);
39
40
map.title("Set Map Scale Intervals");
41
map.container("container");
42
map.draw();
43
});