function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 86], ['Australia', 4], ['Brazil', 19], ['Canada', 48], ['Chile', 33], ['China', 1], ['Colombia', 36], ['Comoros', 2], ['Costa Rica', 119], ['Ecuador', 65], ['Egypt', 1], ['El Salvador', 7], ['Falkland Islands', 9], ['France', 63], ['French Polynesia', 4], ['Gabon', 2], ['Gambia', 1], ['Guatemala', 2], ['Iceland', 5], ['India', 1], ['Indonesia', 1], ['Italy', 4], ['Japan', 5], ['Jordan', 1], ['Kenya', 1], ['Marshall Islands', 1], ['Mauritania', 37], ['Mauritius', 25], ['Mayotte', 25], ['Mexico', 818], ['Morocco', 3], ['Mozambique', 25], ['New Caledonia', 1], ['Nicaragua', 2], ['Northern Mariana Islands', 1], ['Panama', 162], ['Peru', 44], ['Philippines', 2], ['Russia', 3], ['RĂ©union', 58], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Saint Lucia', 3], ['Saint Pierre and Miquelon', 24], ['Senegal', 29], ['Seychelles', 2], ['Somalia', 1], ['South Africa', 1086], ['Spain', 3], ['Sudan', 3], ['Sweden', 3], ['Tanzania', 3], ['United Kingdom', 8], ['United States of America', 101], ['isla san pedro', 6], ['tortola island', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=3003', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 55, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);