anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
{id: 'AU.CT', value: 15, title: 'Australian Capital Territory'},
{id: 'AU.VI', value: 23, title: 'Victoria'},
{id: 'AU.WA', value: 86, title: 'Western Australia'},
{id: 'AU.QL', value: 16, title: 'Queensland'},
{id: 'AU.NS', value: 32, title: 'New South Wales'},
{id: 'AU.NT', value: 64, title: 'Northern Territory'},
{id: 'AU.TS', value: 28, title: 'Tasmania'}
var map = anychart.map();
map.geoData(anychart.maps.australia);
var series = map.choropleth(dataSet);
var unboundRegions = map.unboundRegions();
src: 'https://static.anychart.com/images/beach.png',
map.title('Set fill as an image');
map.container('container');