function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1450], ['American Samoa', 7], ['Antarctica', 2437], ['Antigua and Barbuda', 1], ['Argentina', 598], ['Australia', 102], ['Barbados', 7], ['Belize', 2], ['Bermuda', 2], ['Bonaire, Sint Eustatius and Saba', 2], ['Brazil', 50], ['Canada', 5], ['Cape Verde', 3], ['Chile', 21], ['China', 3], ['Cuba', 3], ['Egypt', 5], ['Falkland Islands', 1], ['Fiji', 3], ['France', 3], ['French Polynesia', 1], ['Georgia', 5], ['Germany', 3], ['Grenada', 3], ['Guadeloupe', 2], ['Guam', 1], ['Guyana', 21], ['Hong Kong', 3], ['Iceland', 38], ['India', 11], ['Indonesia', 340], ['Italy', 806], ['Japan', 5], ['Jordan', 13], ['Kenya', 8], ['Madagascar', 49], ['Mauritania', 2], ['Mauritius', 2], ['Mexico', 19], ['Micronesia', 1], ['Monaco', 3], ['Myanmar', 1], ['Netherlands', 36], ['New Caledonia', 608], ['New Zealand', 42], ['Norway', 2], ['Oman', 12], ['Palau', 18], ['Panama', 2], ['Papua New Guinea', 5], ['Peru', 9], ['Philippines', 5], ['Portugal', 2], ['Puerto Rico', 3], ['Russia', 7], ['Saint Vincent and the Grenadines', 1], ['Saudi Arabia', 2], ['Seychelles', 47], ['Singapore', 22], ['South Africa', 233], ['South Georgia and the South Sandwich Islands', 52], ['South Korea', 2], ['Spain', 2], ['Suriname', 44], ['Taiwan', 12], ['Thailand', 41], ['United Kingdom', 5], ['United States Virgin Islands', 2], ['United States of America', 18], ['Venezuela', 1], ['Vietnam', 8], ['isla san pedro', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=7286', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 72, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);