function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3944], ['Afghanistan', 19], ['Albania', 10], ['Algeria', 4], ['Angola', 5], ['Antigua and Barbuda', 11], ['Argentina', 39], ['Australia', 84], ['Austria', 3], ['Bermuda', 2], ['Bhutan', 1], ['Bolivia', 2], ['Bosnia and Herzegovina', 14], ['Botswana', 3], ['Brazil', 557], ['Cambodia', 1], ['Cameroon', 19], ['Chile', 42], ['China', 215], ['Christmas Island', 2], ['Colombia', 215], ['Costa Rica', 7], ['Croatia', 10], ['Cuba', 2], ['Democratic Republic of the Congo', 14], ['Denmark', 114], ['Dominican Republic', 1], ['Ecuador', 12], ['Egypt', 2], ['Eritrea', 1], ['Ethiopia', 11], ['Fiji', 5], ['Finland', 4], ['France', 3], ['French Guiana', 1], ['Gambia', 1], ['Georgia', 4], ['Germany', 134], ['Ghana', 11], ['Greece', 17], ['Guadeloupe', 2], ['Guatemala', 4], ['Guatemala, Honduras, Costa Rica', 1], ['Guinea-Bissau', 12], ['Guyana', 5], ['Haiti', 4], ['Iceland', 28], ['Iceland, Vietnam', 1], ['India', 660], ['Indonesia', 28], ['Iran', 29], ['Iraq', 9], ['Italy', 17], ['Jamaica', 6], ['Japan', 81], ['Jordan', 10], ['Kazakhstan', 27], ['Kenya', 29], ['Kyrgyzstan', 9], ['Laos', 1], ['Lesotho', 1], ['Libya', 9], ['Macedonia', 0], ['Madagascar', 119], ['Malawi', 20], ['Malaysia', 9], ['Martinique', 1], ['Mauritius', 44], ['Mexico', 85], ['Micronesia', 4], ['Monaco', 32], ['Mongolia', 3], ['Montserrat', 5], ['Morocco', 4], ['Mozambique', 12], ['Myanmar', 7], ['Namibia', 15], ['Nepal', 4], ['New Caledonia', 3], ['New Zealand', 2], ['Nigeria', 16], ['Pakistan', 2], ['Palestine', 8], ['Panama', 10], ['Papua New Guinea', 8], ['Paraguay', 6], ['Peru', 18], ['Philippines', 19], ['Portugal', 3], ['Romania', 2], ['Russia', 1227], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Saint Kitts and Nevis', 11], ['Saint Vincent and the Grenadines', 1], ['Sao Tome and Principe', 11], ['Senegal', 1], ['Serbia', 182], ['Seychelles', 3], ['Sierra Leone', 2], ['Sierra Leone, Togo', 2], ['Singapore', 1], ['Slovenia', 3], ['Somalia', 5], ['South Africa', 103], ['South Korea', 1], ['Spain', 23], ['Sri Lanka', 1], ['Sudan', 18], ['Swaziland', 6], ['Switzerland', 5], ['Taiwan', 80], ['Tajikistan', 7], ['Tanzania', 52], ['Thailand', 62], ['Togo', 1], ['Tonga', 1], ['Tunisia', 82], ['Turkey', 5], ['Turkmenistan', 4], ['Uganda', 4], ['United Kingdom', 1], ['United States Virgin Islands', 1], ['United States of America', 22], ['Uruguay', 2], ['Uzbekistan', 2], ['Venezuela', 11], ['Venezuela, Colombia, Ecuador, Peru', 1], ['Vietnam', 5], ['Virgin Islands', 1], ['Yemen', 1], ['Zimbabwe', 9], ['barcelona', 1], ['djerba island', 55], ['herzogowina', 4], ['martinique island', 1], ['saint-barthelemy island', 2], ['u.k. england.', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=9007', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 137, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);