function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2064], ['Angola', 1], ['Argentina', 11], ['Australia', 5], ['Austria', 2], ['Benin', 6], ['Bhutan', 1], ['Bhutan, India, Indonesia, Madagascar, Malaysia', 51], ['Bolivia', 24], ['Botswana', 0], ['Brazil', 600], ['Brazil, French Guiana, Trinidad and Tobago', 15], ['Canada', 56], ['Central African Republic', 27], ['Chile', 11], ['China', 3434], ['Colombia', 7], ['Costa Rica', 627061], ['Cyprus', 4], ['Democratic Republic of the Congo', 4], ['Denmark', 2], ['Dominican Republic', 3], ['Ecuador', 352], ['Eritrea', 1], ['Ethiopia', 1], ['Finland', 4], ['France', 12], ['French Guiana', 6], ['Georgia', 5], ['Germany', 21], ['Greece', 6], ['Guatemala', 1], ['Guinea-Bissau', 1], ['Guyana', 5], ['Haiti', 8], ['Iceland', 7], ['India', 40], ['Indonesia', 124], ['Iran', 149], ['Israel', 5], ['Italy', 201], ['Ivory Coast', 1], ['Japan', 1685], ['Kyrgyzstan', 4], ['Madagascar', 27], ['Malaysia', 105], ['Mauritius', 13], ['Mexico', 62], ['Mongolia', 2], ['Myanmar', 65], ['Nepal', 308], ['Netherlands', 2], ['New Caledonia', 1], ['Nicaragua', 1], ['North Korea', 32], ['Pakistan', 182], ['Panama', 54], ['Papua New Guinea', 24], ['Paraguay', 1], ['Peru', 431], ['Philippines', 45], ['Poland', 9], ['Russia', 257], ['Saint Kitts and Nevis', 22], ['Senegal', 1], ['South Africa', 4], ['South Korea', 8], ['Spain', 35], ['Sri Lanka', 6], ['Suriname', 1], ['Sweden', 178], ['Switzerland', 4], ['Taiwan', 155], ['Tanzania', 1], ['Thailand', 34], ['Togo', 2], ['Trinidad and Tobago', 79], ['Turkey', 1], ['Turkmenistan', 1], ['Uganda', 1], ['United States of America', 163], ['Uzbekistan', 1], ['Venezuela', 34], ['Vietnam', 36], ['Yemen', 2], ['Zimbabwe', 2], ['malta island', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=638424', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 87, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);