function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2269], [': suriname', 1], ['Afghanistan', 5], ['Angola', 19], ['Argentina', 219], ['Australia', 5], ['Bangladesh', 5], ['Barbados', 4], ['Belgium', 3], ['Belize', 12], ['Bhutan', 2], ['Bolivia', 3914], ['Brazil', 4680], ['Brunei', 68], ['Cambodia', 24], ['Cameroon', 99], ['Canada', 6], ['Central African Republic', 2], ['Chile', 58], ['China', 844], ['Colombia', 164], ['Comoros', 15], ['Costa Rica', 3], ['Croatia', 3], ['Cuba', 11], ['Democratic Republic of the Congo', 177], ['Dominican Republic', 6], ['Ecuador', 3394], ['El Salvador', 1], ['Equatorial Guinea', 22], ['Eritrea', 1], ['Ethiopia', 1], ['Fiji', 11], ['Fiji, New Caledonia, Tonga', 1], ['France', 2190], ['French Guiana', 158], ['French Polynesia', 19], ['Gabon', 92], ['Germany', 1], ['Ghana', 9], ['Greece', 79], ['Guatemala', 24], ['Guinea-Bissau', 21], ['Guyana', 114], ['Haiti', 8], ['Honduras', 5], ['Hong Kong', 1], ['Iceland', 2], ['India', 114], ['Indonesia', 585], ['Iran', 2], ['Iraq', 1], ['Ivory Coast', 14], ['Japan', 580], ['Kazakhstan', 1], ['Kenya', 89], ['Laos', 71], ['Liberia', 74], ['Macedonia', 9], ['Madagascar', 883], ['Malawi', 3], ['Malaysia', 146], ['Mayotte', 21], ['Mexico', 103], ['Micronesia', 4], ['Mongolia', 3], ['Morocco', 3], ['Mozambique', 8], ['Myanmar', 10], ['Nepal', 6], ['New Caledonia', 12123], ['Nigeria', 17], ['North Korea', 1], ['Pakistan', 12], ['Panama', 2], ['Papua New Guinea', 40], ['Paraguay', 42], ['Peru', 686], ['Philippines', 589], ['Republic of the Congo', 10], ['Russia', 8], ['Rwanda', 1], ['Saint Helena, Ascension and Tristan da Cunha', 3], ['Saint Lucia', 1], ['Saint Pierre and Miquelon', 1], ['Samoa', 15], ['Sao Tome and Principe', 2], ['Saudi Arabia', 61], ['Serbia', 1], ['Seychelles', 3], ['Sierra Leone', 30], ['Singapore', 1], ['Solomon Islands', 4], ['South Africa', 150], ['South Georgia and the South Sandwich Islands', 12], ['South Korea', 4], ['Spain', 169], ['Sri Lanka', 7], ['Suriname', 59], ['Swaziland', 1], ['Sweden', 1], ['Taiwan', 19], ['Tanzania', 75], ['Thailand', 36], ['Tonga', 4], ['Trinidad and Tobago', 483], ['Turkey', 12], ['United States of America', 180], ['Uruguay', 16], ['Uzbekistan', 1], ['Vanuatu', 3], ['Venezuela', 1468], ['Vietnam', 344], ['Yemen', 2], ['Zambia', 3], ['Zimbabwe', 4], ['equatoria guinea', 1], ['kenya congo tanzanie', 1], ['tahiti', 3], ['tibet', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=38215', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 120, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);