function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2], ['Armenia', 19], ['Austria', 7], ['Belgium', 4], ['Bermuda', 26], ['Bulgaria', 18], ['Canada', 13], ['China', 881], ['Croatia', 20], ['Cyprus', 16], ['Czech Republic', 79], ['Egypt', 2], ['France', 20], ['Germany', 63], ['Greece', 91], ['Hungary', 35], ['India', 34], ['Indonesia', 2], ['Iran', 214], ['Iraq', 17], ['Ireland', 4], ['Israel', 5], ['Italy', 802], ['Japan', 215], ['Jordan', 1], ['Kazakhstan', 5], ['Laos', 6], ['Lebanon', 1], ['Malaysia', 8], ['Moldova', 3], ['Mongolia', 8], ['Morocco', 118], ['Nepal', 11], ['Pakistan', 26], ['Palestine', 5], ['Philippines', 9], ['Poland', 6], ['Portugal', 56], ['Russia', 155], ['Saint Vincent and the Grenadines', 28], ['Senegal', 1], ['Serbia', 42], ['Slovakia', 7], ['Somalia', 1], ['South Korea', 199], ['Spain', 57], ['Sri Lanka', 1], ['Sweden', 62], ['Switzerland', 50], ['Syria', 5], ['Taiwan', 29], ['Tajikistan', 3], ['Tanzania', 1], ['Thailand', 9], ['Turkey', 44], ['Turkmenistan', 59], ['Uganda', 1], ['Ukraine', 8], ['United Arab Emirates', 36], ['United Kingdom', 153], ['United States of America', 94], ['Uzbekistan', 1], ['Venezuela', 140], ['Vietnam', 8] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4046', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 64, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);