function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 650], ['Afghanistan', 31], ['Algeria', 73], ['Angola', 4], ['Armenia', 7], ['Austria', 1], ['Bhutan', 1], ['Botswana', 4], ['Brazil', 327], ['British Virgin Islands', 2], ['Brunei', 4], ['Bulgaria', 2], ['Burkina Faso', 1], ['Cambodia', 4], ['Cameroon', 4], ['China', 2257], ['Colombia', 40], ['Costa Rica', 60], ['Cuba', 46], ['Cyprus', 3], ['Czech Republic', 1], ['Djibouti', 8], ['Dominica', 2], ['Dominican Republic', 63], ['Ecuador', 42], ['Egypt', 41], ['Ethiopia', 32], ['French Guiana', 5], ['Germany', 10], ['Greece', 31], ['Guadeloupe', 1], ['Guatemala', 1], ['Guinea-Bissau', 16], ['Guyana', 26], ['Haiti', 1], ['Hungary', 3], ['India', 229], ['Indonesia', 40], ['Iran', 55], ['Iraq', 3], ['Israel', 19], ['Italy', 8], ['Ivory Coast', 4], ['Jamaica', 62], ['Japan', 22], ['Jordan', 5], ['Kazakhstan', 4], ['Kenya', 17], ['Laos', 477], ['Lebanon', 1], ['Libya', 2], ['Madagascar', 215], ['Malaysia', 216], ['Martinique', 2], ['Morocco', 41], ['Myanmar', 9], ['Namibia', 57], ['Nepal', 61], ['Nigeria', 1], ['Oman', 19], ['Pakistan', 27], ['Palestine', 4], ['Panama', 115], ['Papua New Guinea', 10], ['Peru', 30], ['Philippines', 2], ['Portugal', 10], ['Puerto Rico', 13], ['Romania', 1], ['Russia', 6], ['Saint Vincent and the Grenadines', 6], ['Saudi Arabia', 18], ['Sierra Leone', 61], ['Slovenia', 22], ['Somalia', 4], ['South Africa', 77], ['Spain', 38], ['Sudan', 4], ['Suriname', 3], ['Switzerland', 16], ['Syria', 24], ['Taiwan', 6], ['Tajikistan', 8], ['Tanzania', 6], ['Tanzania, Mozambique', 1], ['Thailand', 250], ['Trinidad and Tobago', 13], ['Tunisia', 6], ['Turkey', 11], ['Turkmenistan', 10], ['United Arab Emirates', 8], ['United States of America', 20], ['Uzbekistan', 16], ['Venezuela', 34], ['Vietnam', 146], ['Virgin Islands', 98], ['Yemen', 6], ['Zimbabwe', 7], ['central oman', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=6511', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 99, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);