function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 702], ['Afghanistan', 427], ['Albania', 11], ['Argentina', 87], ['Armenia', 7], ['Australia', 4], ['Azerbaijan', 16], ['Brazil', 1], ['Bulgaria', 2], ['Canada', 7], ['Chile', 145], ['China', 54], ['Cook Islands', 9], ['Cyprus', 4], ['Egypt', 27], ['France', 8], ['Germany', 3], ['Greece', 285], ['Hungary', 156], ['India', 3], ['Indonesia', 1], ['Iran', 222], ['Iraq', 22], ['Israel', 18], ['Italy', 902], ['Kazakhstan', 4], ['Kenya', 13], ['Kyrgyzstan', 14], ['Laos', 78], ['Lebanon', 12], ['Luxembourg', 2], ['Mexico', 6], ['Moldova', 4], ['Morocco', 1], ['Mozambique', 1], ['Nepal', 1], ['New Zealand', 3], ['Oman', 4], ['Pakistan', 18], ['Palestine', 5], ['Peru', 3], ['Russia', 3], ['Saint Pierre and Miquelon', 9], ['South Africa', 46], ['South Korea', 1], ['Spain', 5], ['Sri Lanka', 1], ['Sudan', 1], ['Sweden', 1], ['Switzerland', 1], ['Syria', 47], ['Tajikistan', 4], ['Thailand', 21], ['Turkey', 415], ['Turkmenistan', 3], ['Ukraine', 2], ['United Kingdom', 5], ['United States of America', 11], ['Uzbekistan', 3], ['secteur cap corse', 1], ['ussr', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=3873', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 61, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);