function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1428], ['Afghanistan', 0], ['Algeria', 3], ['Angola', 3], ['Antarctica', 1], ['Antigua and Barbuda', 1], ['Aruba', 2], ['Australia', 802], ['Bahamas', 344], ['Barbados', 2], ['Belgium', 5], ['Belize', 1], ['Bermuda', 5], ['Bonaire, Sint Eustatius and Saba', 3], ['Brazil', 6488], ['British Virgin Islands', 5], ['Cape Verde', 8], ['Cayman Islands', 1], ['Chile', 10], ['China', 11], ['Colombia', 19], ['Costa Rica', 2], ['Cuba', 27], ['Curaçao', 4], ['Denmark', 7], ['Djibouti', 25], ['Dominican Republic', 2], ['Ecuador', 1], ['Egypt', 16], ['El Salvador', 411], ['Eritrea', 1], ['Fiji', 1], ['France', 61], ['French Guiana', 1], ['French Polynesia', 3], ['Georgia', 4], ['Germany', 6], ['Grenada', 2], ['Guadeloupe', 4], ['Guinea-Bissau', 3], ['Guyana', 2], ['Honduras', 7], ['Hong Kong', 3], ['Hungary', 1], ['Iceland', 14], ['India', 1], ['Indonesia', 12], ['Iran', 1], ['Italy', 16], ['Jamaica', 5], ['Japan', 74], ['Madagascar', 3], ['Malaysia', 59], ['Maldives', 7], ['Marshall Islands', 1], ['Mauritania', 1], ['Mauritius', 5], ['Mexico', 21], ['Netherlands', 1], ['New Caledonia', 98], ['New Zealand', 15], ['Nicaragua', 2], ['Northern Mariana Islands', 1], ['Oman', 42], ['Pakistan', 4], ['Palau', 1], ['Panama', 8], ['Papua New Guinea', 10], ['Philippines', 14], ['Portugal', 8], ['Puerto Rico', 1], ['Romania', 6], ['Réunion', 27], ['Saint Helena, Ascension and Tristan da Cunha', 7], ['Saint Lucia', 1], ['Saint Vincent and the Grenadines', 2], ['Samoa', 5], ['Saudi Arabia', 13], ['Seychelles', 1], ['Solomon Islands', 1], ['South Africa', 89], ['Spain', 8], ['Taiwan', 5], ['Tanzania', 6], ['Trinidad and Tobago', 1], ['Tunisia', 1], ['Tuvalu', 3], ['Ukraine', 1], ['United Arab Emirates', 1], ['United States Virgin Islands', 3], ['United States of America', 273], ['United States of America, Guam', 1], ['Uruguay', 1], ['Vanuatu', 1], ['Venezuela', 3], ['Virgin Islands', 1], ['Yemen', 11], ['ascension island', 1], ['bahia', 3], ['new guinea', 4], ['reunion island', 19], ['saint helena island', 6] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=10666', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 102, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);