function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2012], ['Afghanistan', 0], ['Algeria', 4], ['Angola', 2], ['Antarctica', 2], ['Argentina', 24], ['Australia', 19], ['Bangladesh', 2], ['Benin', 1], ['Bermuda', 0], ['Bhutan', 1], ['Bolivia', 65], ['Brazil', 980], ['Burundi', 30], ['Cameroon', 3], ['Canada', 16], ['Cape Verde', 4], ['Chile', 9], ['China', 219], ['Colombia', 75], ['Comoros', 3], ['Costa Rica', 45], ['Cuba', 2], ['Democratic Republic of the Congo', 11], ['Dominica', 1], ['Dominican Republic', 5], ['Ecuador', 81], ['Egypt', 2], ['Egypt, Sudan', 1], ['El Salvador', 2], ['Equatorial Guinea', 7], ['Ethiopia', 8], ['Fiji', 7], ['France', 9], ['French Guiana', 10], ['French Polynesia', 708], ['Gabon', 3], ['Germany', 3], ['Ghana', 5], ['Greece', 1], ['Grenada', 1], ['Guadeloupe', 49], ['Guatemala', 5], ['Guinea-Bissau', 558], ['Guyana', 23], ['Honduras', 6], ['Hong Kong', 1], ['Hungary', 4], ['Iceland', 10], ['India', 21], ['Indonesia', 67], ['Iran', 1], ['Italy', 3], ['Ivory Coast', 12], ['Jamaica', 7], ['Japan', 17], ['Kenya', 108], ['Laos', 4], ['Liberia', 6], ['Madagascar', 1718], ['Malawi', 1], ['Malaysia', 26], ['Martinique', 8], ['Mauritius', 32], ['Mexico', 8], ['Micronesia', 0], ['Montserrat', 0], ['Myanmar', 6], ['Nepal', 6], ['New Caledonia', 90], ['New Zealand', 1], ['Nicaragua', 4], ['Nigeria', 1], ['Panama', 30], ['Papua New Guinea', 2], ['Paraguay', 11], ['Peru', 64], ['Philippines', 191], ['Republic of the Congo', 4], ['Russia', 1], ['Rwanda', 37], ['RĂ©union', 33], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Kitts and Nevis', 1], ['Saint Vincent and the Grenadines', 5], ['Samoa', 3], ['Sao Tome and Principe', 1], ['Senegal', 2], ['Serbia', 1], ['Seychelles', 5], ['Sierra Leone', 5], ['Singapore', 5], ['Solomon Islands', 1], ['South Africa', 16], ['South Korea', 8], ['Sri Lanka', 17], ['Sudan', 2], ['Suriname', 3], ['Switzerland', 2], ['Taiwan', 2], ['Tanzania', 1866], ['Thailand', 66], ['Togo', 848], ['Trinidad and Tobago', 6], ['Tunisia', 5], ['United States of America', 246], ['Uruguay', 17], ['Venezuela', 75], ['Vietnam', 76], ['Yemen', 1], ['Zimbabwe', 1], ['britain', 0], ['new guinea.', 0], ['taiwan island', 11] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=10857', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 114, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);