function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1164], ['Albania', 1], ['Algeria', 461], ['Argentina', 2634], ['Belize', 1], ['Brazil', 37], ['British Virgin Islands', 476], ['Bulgaria', 6], ['Chile', 39], ['China', 676], ['Colombia', 18], ['Cyprus', 151], ['Denmark', 2], ['Ecuador', 60], ['Greece', 278], ['Guam', 0], ['Guyana', 21], ['Iceland', 9], ['India', 13], ['Israel', 274], ['Italy', 38], ['Latvia', 1], ['Lebanon', 2], ['Libya', 1], ['Macedonia', 1], ['Morocco', 3464], ['Palestine', 8], ['Panama', 25], ['Philippines', 7], ['Puerto Rico', 1], ['Romania', 1], ['Saint Pierre and Miquelon', 1], ['Sao Tome and Principe', 1], ['Serbia', 1], ['Slovakia', 1], ['South Africa', 1], ['Spain', 263], ['Suriname', 1], ['Switzerland', 1], ['Switzerland, Germany', 1], ['Syria', 31], ['Tunisia', 256], ['Turkey', 14], ['United States of America', 39], ['Vietnam', 1], ['Virgin Islands', 28], ['Yemen', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=10511', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 47, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);