function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1847], ['Afghanistan', 0], ['Algeria', 2], ['Antarctica', 2], ['Argentina', 24], ['Australia', 19], ['Bangladesh', 2], ['Benin', 1], ['Bermuda', 0], ['Bhutan', 1], ['Bolivia', 52], ['Brazil', 914], ['Burundi', 30], ['Cameroon', 3], ['Canada', 14], ['Cape Verde', 4], ['Chile', 9], ['China', 200], ['Colombia', 27], ['Comoros', 2], ['Costa Rica', 12], ['Cuba', 0], ['Democratic Republic of the Congo', 10], ['Ecuador', 18], ['Equatorial Guinea', 5], ['Ethiopia', 3], ['Fiji', 0], ['France', 8], ['French Guiana', 8], ['French Polynesia', 8], ['Gabon', 3], ['Germany', 3], ['Ghana', 5], ['Greece', 1], ['Guadeloupe', 29], ['Guatemala', 1], ['Guinea-Bissau', 557], ['Guyana', 10], ['Hong Kong', 1], ['Hungary', 4], ['Iceland', 10], ['India', 16], ['Indonesia', 64], ['Iran', 1], ['Italy', 3], ['Ivory Coast', 12], ['Jamaica', 1], ['Japan', 13], ['Kenya', 95], ['Laos', 4], ['Liberia', 6], ['Madagascar', 1651], ['Malaysia', 26], ['Martinique', 8], ['Mauritius', 24], ['Mexico', 3], ['Montserrat', 0], ['Myanmar', 6], ['Nepal', 6], ['New Zealand', 1], ['Nicaragua', 3], ['Nigeria', 1], ['Panama', 17], ['Papua New Guinea', 1], ['Paraguay', 11], ['Peru', 24], ['Philippines', 184], ['Republic of the Congo', 4], ['Russia', 1], ['Rwanda', 37], ['RĂ©union', 26], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Vincent and the Grenadines', 3], ['Sao Tome and Principe', 1], ['Serbia', 1], ['Seychelles', 5], ['Sierra Leone', 5], ['Singapore', 5], ['South Africa', 12], ['South Korea', 2], ['Sri Lanka', 11], ['Suriname', 1], ['Switzerland', 2], ['Taiwan', 3], ['Tanzania', 1864], ['Thailand', 30], ['Togo', 778], ['Tunisia', 5], ['United States of America', 134], ['Uruguay', 17], ['Venezuela', 15], ['Vietnam', 77], ['Yemen', 1], ['britain', 0], ['new guinea.', 0], ['taiwan island', 11] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=9082', 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);