function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 482], ['Angola', 1], ['Antarctica', 20], ['Argentina', 2], ['Australia', 5], ['Bermuda', 5], ['Bonaire, Sint Eustatius and Saba', 1], ['Canada', 4], ['Cape Verde', 2], ['Chad', 11], ['Chile', 4], ['China', 2], ['Cuba', 2], ['Falkland Islands', 1], ['France', 1], ['Gabon', 6], ['Georgia', 1], ['Greenland', 4], ['Guinea-Bissau', 3], ['Haiti', 1], ['Iceland', 16], ['Indonesia', 4], ['Ireland', 1], ['Japan', 6], ['Jordan', 1], ['Mauritania', 2], ['Mauritius', 1], ['Morocco', 7], ['Namibia', 1], ['New Caledonia', 125], ['New Zealand', 5], ['Norway', 3], ['Philippines', 3], ['Puerto Rico', 5], ['Saint Helena, Ascension and Tristan da Cunha', 4], ['Saint Kitts and Nevis', 8], ['Saint Pierre and Miquelon', 2], ['Saint Vincent and the Grenadines', 1], ['South Georgia and the South Sandwich Islands', 3], ['Spain', 1], ['Sri Lanka', 1], ['United Kingdom', 7], ['United States Pacific Island Wildlife Refuges', 6], ['United States of America', 37], ['Uruguay', 1], ['Western Sahara', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=813', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 46, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);