function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 744], ['Afghanistan', 38], ['Algeria', 1], ['Angola', 12], ['Argentina', 26], ['Armenia', 29], ['Austria', 10], ['Azerbaijan', 3], ['Belgium', 2], ['Bhutan', 2], ['Bolivia', 50], ['Brazil', 630], ['Burundi', 1], ['Cameroon', 1602], ['Canada', 26], ['Chile', 58], ['China', 934], ['Colombia', 20], ['Costa Rica', 8], ['Cuba', 5], ['Czech Republic', 11], ['Democratic Republic of the Congo', 9], ['Denmark', 2], ['Ecuador', 36], ['Equatorial Guinea', 2], ['Eritrea', 1], ['Ethiopia', 8], ['France', 55], ['Georgia', 1], ['Germany', 6], ['Ghana', 3], ['Gibraltar', 1], ['Greece', 76], ['Guatemala', 2], ['Guyana', 4], ['Honduras', 2], ['Hong Kong', 8], ['Hungary', 9], ['India', 121], ['Indonesia', 22], ['Iran', 135], ['Iraq', 15], ['Italy', 5], ['Ivory Coast', 1209], ['Jamaica', 10], ['Japan', 31], ['Kazakhstan', 4], ['Kenya', 52], ['Kyrgyzstan', 6], ['Laos', 3], ['Lebanon', 5], ['Lesotho', 1], ['Madagascar', 65], ['Malaysia', 1], ['Malta', 1], ['Mauritius', 3], ['Mexico', 10], ['Montserrat', 13], ['Morocco', 6], ['Myanmar', 13], ['Nepal', 9], ['Nigeria', 2], ['North Korea', 3], ['Pakistan', 5], ['Panama', 1], ['Papua New Guinea', 4], ['Paraguay', 33], ['Peru', 72], ['Poland', 4], ['Republic of the Congo', 25], ['Romania', 1], ['Russia', 17], ['Rwanda', 2], ['RĂ©union', 20], ['Senegal', 1], ['Serbia', 2], ['Slovakia', 8], ['South Africa', 282], ['South Korea', 41], ['Spain', 229], ['Sri Lanka', 11], ['Swaziland', 2], ['Sweden', 2], ['Switzerland', 5], ['Syria', 2], ['Taiwan', 97620], ['Tanzania', 12], ['Thailand', 10], ['Tunisia', 7], ['Turkey', 933], ['Uganda', 7], ['United Kingdom', 3], ['United States of America', 147], ['Uruguay', 2], ['Uzbekistan', 4], ['Venezuela', 3], ['Vietnam', 9], ['Yemen', 1], ['Zimbabwe', 2], ['africa', 5], ['ambon island', 0], ['azarbaijan', 1], ['u.s.s.r. turcomania.', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=105719', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 103, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);