function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5389], ['Algeria', 43], ['Angola', 11], ['Antarctica', 6], ['Argentina', 162], ['Australia', 375], ['Austria', 2], ['Bahamas', 46], ['Bangladesh', 3], ['Belgium', 1], ['Bermuda', 1], ['Brazil', 48], ['Bulgaria', 2], ['Cambodia', 7], ['Canada', 11], ['Cape Verde', 2], ['Chile', 1], ['China', 45359], ['Cocos (Keeling) Islands', 1], ['Colombia', 13], ['Comoros', 65], ['Costa Rica', 26], ['Croatia', 3], ['CuraƧao', 2], ['Cyprus', 3], ['Democratic Republic of the Congo', 10], ['Denmark', 5], ['Djibouti', 1], ['Ecuador', 4], ['Egypt', 5], ['El Salvador', 2], ['Estonia', 16], ['Ethiopia', 1], ['Fiji', 3], ['France', 25], ['French Guiana', 9], ['Gabon', 1], ['Germany', 78], ['Greece', 1], ['Guatemala', 1], ['Guinea-Bissau', 4], ['Haiti', 3], ['Heard Island and McDonald Islands', 5], ['Honduras', 7], ['Hungary', 4], ['Iceland', 4], ['India', 41], ['Indonesia', 43], ['Iran', 1], ['Ireland', 1], ['Israel', 7], ['Italy', 43], ['Ivory Coast', 3], ['Japan', 226], ['Kiribati', 1], ['Kyrgyzstan', 2], ['Lebanon', 11], ['Madagascar', 8], ['Malaysia', 6], ['Maldives', 2], ['Mauritania', 1], ['Mauritius', 51], ['Mexico', 108], ['Micronesia', 1], ['Mongolia', 2], ['Mozambique', 6], ['Myanmar', 9], ['Namibia', 116], ['New Caledonia', 7], ['New Zealand', 3], ['Niger', 3], ['Norway', 10], ['Pakistan', 1], ['Palau', 4], ['Papua New Guinea', 20], ['Paraguay', 2], ['Philippines', 9], ['Poland', 4], ['Portugal', 6], ['Romania', 1], ['Russia', 256], ['Rwanda', 2], ['Saudi Arabia', 1], ['Senegal', 1], ['Serbia', 2], ['Seychelles', 1], ['Slovenia', 37], ['South Africa', 4], ['South Georgia and the South Sandwich Islands', 3], ['South Korea', 389], ['Spain', 7], ['Sri Lanka', 11], ['Svalbard and Jan Mayen', 1], ['Taiwan', 22], ['Thailand', 43], ['Tunisia', 13], ['Turkey', 131], ['United Kingdom', 252], ['United States Pacific Island Wildlife Refuges', 2], ['United States of America', 44], ['Uruguay', 1], ['Uzbekistan', 1], ['Venezuela', 3], ['Vietnam', 14], ['Yemen', 2], ['martinique island', 5], ['tortuga island', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=53781', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 107, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);