function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1932], ['Algeria', 11], ['American Samoa', 17], ['Australia', 1], ['Azerbaijan', 5], ['Benin', 3], ['Brazil', 8], ['Bulgaria', 8], ['Chad', 240], ['China', 2], ['Costa Rica', 38], ['Czech Republic', 5], ['Democratic Republic of the Congo', 2], ['Ecuador', 1], ['Gabon', 26], ['Germany', 1], ['Grenada', 1], ['Guadeloupe', 1], ['Guam', 1], ['Guyana', 1], ['Hungary', 1], ['Iceland', 535], ['India', 12], ['Indonesia', 13], ['Iran', 4], ['Israel', 2], ['Italy', 606], ['Ivory Coast', 1], ['Japan', 71], ['Jordan', 3], ['Kazakhstan', 13], ['Kuwait', 14], ['Laos', 4], ['Malaysia', 1], ['Mexico', 83], ['Morocco', 5], ['Myanmar', 2], ['New Zealand', 11], ['Oman', 385], ['Palau', 24], ['Panama', 14], ['Peru', 13], ['Philippines', 275], ['Russia', 7], ['Saint Lucia', 9], ['Saudi Arabia', 174], ['Switzerland', 2], ['Syria', 1], ['Tajikistan', 3], ['Tunisia', 2], ['Turkey', 3], ['Turkmenistan', 4], ['Ukraine', 1], ['United States of America', 96], ['Uzbekistan', 35], ['Venezuela', 1], ['Yemen', 456], ['yemen socotra', 3], ['yemen socotra island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=5194', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 59, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);