function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2949], ['Argentina', 50], ['Australia', 9], ['Austria', 3], ['Bolivia', 8], ['Brazil', 76], ['Canada', 2], ['Chile', 25], ['China', 50], ['Colombia', 52], ['Cuba', 2], ['Ecuador', 42], ['Falkland Islands', 26], ['Fiji', 8], ['France', 119], ['French Polynesia', 2], ['Georgia', 3], ['Germany', 2], ['Haiti', 3], ['Hong Kong', 4], ['Hungary', 1], ['Iceland', 23], ['Iceland, Samoa', 1], ['India', 2], ['Indonesia', 32], ['Iran', 1], ['Italy', 2], ['Jamaica', 1], ['Japan', 4], ['Jordan', 1], ['Lebanon', 2], ['Madagascar', 1], ['Mauritius', 5], ['Mexico', 2], ['Mozambique', 7], ['Myanmar', 2], ['Nepal', 1], ['New Caledonia', 202], ['New Zealand', 10], ['Oman', 1], ['Palau', 497], ['Panama, India', 1], ['Papua New Guinea', 7], ['Paraguay', 9], ['Peru', 13], ['Philippines', 6], ['Puerto Rico', 1], ['Romania', 3], ['Samoa', 3], ['Singapore', 2], ['South Georgia and the South Sandwich Islands', 31], ['South Korea', 1], ['Suriname', 2], ['Trinidad and Tobago', 5], ['Turkey', 23], ['Tuvalu', 1], ['United States of America', 3], ['Uruguay', 2], ['Venezuela', 309] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4655', 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);