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