anychart.onDocumentReady(function () {
var map = anychart.map();
var dataSet = anychart.data.set([
{'id': 'SG.CS', 'value': 0},
{'id': 'SG.SW', 'value': 1},
{'id': 'SG.NW', 'value': 2},
{'id': 'SG.NE', 'value': 3},
{'id': 'SG.SE', 'value': 4}
series = map.choropleth(dataSet);
series.colorScale(anychart.scales.linearColor('#deebf7', '#3182bd'));
series.hoverFill('#addd8e');
map.geoData(anychart.maps['singapore']);
map.container('container');