function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1370], ['Angola', 4], ['Argentina', 3], ['Barbados', 1], ['Brazil', 3], ['Canada', 8], ['Chile', 2], ['China', 24], ['Clipperton Island', 30], ['Croatia', 4], ['Cyprus', 1], ['Ecuador', 1], ['France', 24], ['French Polynesia', 2], ['Germany', 3], ['Guernsey', 1], ['Guinea-Bissau, Equatorial Guinea', 1], ['Iceland', 13], ['Italy', 1], ['Ivory Coast', 1], ['Japan', 3], ['Malta', 1], ['Mexico', 30], ['Monaco', 9], ['New Zealand', 2], ['Norway', 410], ['Panama', 6], ['Peru', 73], ['Philippines', 8], ['Portugal', 7], ['Saint Vincent and the Grenadines', 2], ['Senegal', 4], ['Serbia', 2], ['Singapore', 86], ['South Africa', 2], ['South Georgia and the South Sandwich Islands', 6], ['South Korea', 7], ['Spain', 2], ['Svalbard and Jan Mayen', 195], ['Sweden', 2], ['Trinidad and Tobago', 1], ['United Kingdom', 120], ['United States of America', 4], ['Venezuela', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2480', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 44, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);