function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1719], ['Algeria', 54], ['Angola', 1], ['Argentina', 39], ['Australia', 33], ['Austria', 2], ['Bahamas', 2], ['Bahrain', 2], ['Bangladesh', 3], ['Bermuda', 13], ['Brazil', 61], ['Canada', 18], ['Cape Verde', 2], ['Chile', 1], ['China', 344], ['Colombia', 8], ['Costa Rica', 2], ['Croatia', 3], ['Democratic Republic of the Congo', 9], ['Djibouti', 10], ['Ethiopia', 1], ['Fiji', 1], ['France', 119], ['French Guiana', 11], ['Germany', 6], ['Greece', 35], ['Guadeloupe', 47], ['Guatemala', 1], ['Haiti', 3], ['Heard Island and McDonald Islands', 8], ['Honduras', 7], ['Hungary', 4], ['India', 312], ['Indonesia', 65], ['Iran', 1], ['Iraq', 5], ['Ireland', 1], ['Israel', 7], ['Italy', 4], ['Ivory Coast', 2], ['Japan', 226], ['Lebanon', 1], ['Madagascar', 39], ['Malaysia', 11], ['Maldives', 1], ['Martinique', 0], ['Mauritania', 1], ['Mauritius', 1], ['Mexico', 59], ['Mongolia', 2], ['Mozambique', 9], ['Myanmar', 9], ['Netherlands', 2], ['New Caledonia', 76], ['New Zealand', 1], ['Niger', 3], ['Norway', 6], ['Pakistan', 1], ['Palau', 6], ['Papua New Guinea', 60], ['Paraguay', 2], ['Philippines', 20], ['Poland', 7], ['Portugal', 16], ['Romania', 1], ['Russia', 4], ['Rwanda', 2], ['Saint Kitts and Nevis', 1], ['Saudi Arabia', 1], ['Senegal', 16], ['Serbia', 2], ['Seychelles', 1], ['Sierra Leone', 0], ['Singapore', 3], ['South Africa', 17], ['South Georgia and the South Sandwich Islands', 3], ['South Korea', 60], ['Spain', 1], ['Sri Lanka', 11], ['Sudan', 1], ['Svalbard and Jan Mayen', 45], ['Sweden', 15], ['Taiwan', 21], ['Tanzania', 10], ['Thailand', 52], ['Tunisia', 16], ['Turkey', 6], ['Ukraine', 4], ['United Kingdom', 64], ['United States of America', 32], ['Uzbekistan', 1], ['Vanuatu', 1], ['Venezuela', 5], ['Vietnam', 15], ['Yemen', 2], ['martinique island', 5] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=3943', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 96, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);