function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1277], ['Afghanistan', 1], ['Algeria', 3], ['Argentina', 838], ['Australia', 1289], ['Austria', 82], ['Belarus', 20], ['Belgium', 53], ['Belize', 1], ['Bolivia', 1], ['Brazil', 4931], ['Brunei', 1], ['Bulgaria', 60], ['Burkina Faso', 4], ['Cameroon', 1], ['Canada', 2432], ['Chile', 41], ['China', 843], ['Colombia', 874], ['Costa Rica', 141], ['Democratic Republic of the Congo', 30], ['Denmark', 1], ['Dominican Republic', 1466], ['Ecuador', 21], ['Egypt', 6], ['Ethiopia', 14], ['Falkland Islands', 10], ['Fiji', 1], ['Finland', 202], ['France', 25], ['Georgia', 30], ['Germany', 539], ['Ghana', 55], ['Gibraltar', 1], ['Greece', 6], ['Greenland', 37], ['Guadeloupe', 1], ['Guam', 18], ['Guatemala', 7], ['Guyana', 1], ['Iceland', 64], ['India', 287], ['Indonesia', 4], ['Iran', 47], ['Ireland', 7], ['Israel', 5], ['Italy', 57], ['Ivory Coast', 6], ['Japan', 250], ['Kazakhstan', 16], ['Kenya', 52], ['Kiribati', 7], ['Kyrgyzstan', 2], ['Lebanon', 16], ['Luxembourg', 23], ['Macao', 4], ['Madagascar', 9], ['Malawi', 40], ['Malaysia', 3], ['Maldives', 1], ['Marshall Islands', 4], ['Martinique', 1], ['Mexico', 37], ['Micronesia', 10], ['Mongolia', 38], ['Morocco', 3], ['Myanmar', 2], ['Namibia', 1], ['Nepal', 5], ['Netherlands', 17], ['New Caledonia', 21], ['New Zealand', 9], ['Nigeria', 5], ['North Korea', 1], ['Northern Mariana Islands', 6], ['Norway', 125], ['Pakistan', 1973], ['Palau', 25], ['Panama', 1], ['Peru', 44], ['Philippines', 2], ['Poland', 63], ['Portugal', 11], ['Puerto Rico', 1], ['Romania', 3], ['Russia', 4019], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Vincent and the Grenadines', 14], ['Samoa', 30], ['Serbia', 3], ['Seychelles', 11], ['Singapore', 29], ['Slovakia', 7], ['Slovenia', 2], ['South Africa', 36], ['South Korea', 21], ['Spain', 74], ['Sri Lanka', 2], ['Sudan', 8], ['Suriname', 1], ['Svalbard and Jan Mayen', 2], ['Sweden', 324], ['Switzerland', 24], ['Taiwan', 5], ['Tajikistan', 52], ['Tanzania', 93], ['Thailand', 1363], ['Togo', 18], ['Tunisia', 1], ['Turkey', 12], ['Uganda', 4], ['Ukraine', 364], ['United Arab Emirates', 10], ['United Kingdom', 70], ['United States of America', 2584], ['Venezuela', 74], ['Zimbabwe', 6], ['alger island', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=27939', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 118, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);