function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 12722], ['Afghanistan', 655], ['Albania', 9], ['Australia', 64], ['Austria', 7], ['Azerbaijan', 1], ['Bahamas', 5], ['Bhutan', 11], ['Bonaire, Sint Eustatius and Saba', 1], ['Bosnia and Herzegovina', 29], ['Brazil', 75], ['Bulgaria', 18], ['Cameroon', 12], ['Canada', 58], ['Central African Republic', 1], ['Chile', 752], ['China', 274], ['Colombia', 1], ['Colombia, Ecuador, Peru, Bolivia', 1], ['Costa Rica', 15], ['Croatia', 28], ['Cuba', 1], ['Cyprus', 178], ['Czech Republic', 10], ['Democratic Republic of the Congo', 10], ['Dominica', 1], ['Ecuador', 1], ['Egypt', 3], ['Equatorial Guinea', 1], ['France', 7], ['Gabon', 6], ['Germany', 3], ['Ghana', 3], ['Greece', 6283], ['Grenada', 1], ['Guadeloupe', 2], ['Guam', 15], ['Guatemala', 6], ['Guinea-Bissau', 60], ['Haiti', 1], ['Honduras', 57], ['Hong Kong', 1], ['India', 1425], ['Indonesia', 97], ['Iran', 1688], ['Israel', 52], ['Italy', 215], ['Ivory Coast', 30], ['Jamaica', 2], ['Japan', 165], ['Jordan', 13], ['Kazakhstan', 4], ['Kenya', 2], ['Kosovo', 1], ['Kyrgyzstan', 1], ['Laos', 1752], ['Lebanon', 158], ['Liberia', 3], ['Macedonia', 500], ['Madagascar', 801], ['Malaysia', 53], ['Mexico', 153], ['Morocco', 2], ['Myanmar', 27], ['Nepal', 899], ['Netherlands', 6], ['New Zealand', 109], ['Nicaragua', 1], ['Nigeria', 1], ['North Korea', 1], ['Norway', 1], ['Pakistan', 6], ['Panama', 7], ['Papua New Guinea', 3], ['Philippines', 26], ['Poland', 2], ['Republic of the Congo', 1], ['Romania', 53], ['Russia', 4], ['Senegal', 7], ['Serbia', 1872], ['Sierra Leone', 8], ['Slovakia', 1], ['Slovenia', 48], ['South Korea', 1], ['Spain', 7], ['Sri Lanka', 6], ['Switzerland', 6], ['Syria', 1039], ['Taiwan', 66], ['Tajikistan', 5], ['Thailand', 102], ['Togo', 3], ['Turkey', 2558], ['Ukraine', 1], ['United Kingdom', 1], ['United States of America', 1017], ['Uzbekistan', 23], ['Vietnam', 1132], ['Virgin Islands', 141], ['West Bank', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=37698', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 101, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);