anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
{id: 'FR.A', title: 'Strasbourg', value: 928},
{id: 'FR.B', title: 'Bordeaux', value: 192},
{id: 'FR.C', title: 'Clermont-Ferrand', value: 963},
{id: 'FR.P', title: 'Caen', value: 266},
{id: 'FR.D', title: 'Dijon', value: 518},
{id: 'FR.E', title: 'Rennes', value: 324}
var map = anychart.map();
map.geoData(anychart.maps.france);
map.container('container');
map.listen('pointClick', function (e) {
var properties = e.point.getFeatureProp();
map.title('Point name (capital): ' + properties.nom_cl);