function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 9374], ['Angola', 11], ['Argentina', 30], ['Australia', 845], ['Austria', 11], ['Austria, France', 1], ['Bangladesh', 1], ['Barbados', 1], ['Brazil', 1299], ['Brunei', 1], ['Cambodia', 1], ['Canada', 25], ['Cape Verde', 3], ['Chad', 1], ['Chile', 10], ['China', 6935], ['China, Argentina', 1], ['Costa Rica', 47], ['Cuba', 1], ['Czech Republic', 3], ['Dominica', 1], ['Dominican Republic', 1], ['Ecuador', 108], ['Egypt', 2], ['Ethiopia', 2], ['Fiji', 1], ['France', 1], ['French Guiana', 2], ['Georgia', 6], ['Germany', 17], ['Guadeloupe', 2], ['Guam', 104], ['Guatemala', 3], ['Guinea-Bissau', 10], ['Hong Kong', 2], ['Hungary', 16], ['Iceland', 25], ['India', 471], ['India, Thailand', 1], ['Indonesia', 485], ['Iran', 971], ['Iraq', 3], ['Israel', 2], ['Italy', 4], ['Japan', 4127], ['Kenya', 9], ['Kyrgyzstan', 5], ['Laos', 13], ['Madagascar', 12], ['Malawi', 3], ['Malaysia', 1002], ['Mexico', 310], ['Mexico, South Africa, Kenya', 1], ['Myanmar', 20], ['Nepal', 20], ['Netherlands', 94], ['New Caledonia', 88], ['New Zealand', 66], ['Nicaragua', 4], ['Niger', 12], ['Nigeria', 5], ['Norfolk Island', 196], ['Norway', 19], ['Pakistan', 1], ['Panama', 76], ['Papua New Guinea', 10], ['Paraguay', 2], ['Peru', 13], ['Philippines', 13], ['Poland', 11], ['Portugal', 3], ['Puerto Rico', 1], ['Russia', 3], ['Rwanda', 1], ['Saudi Arabia', 1256], ['Serbia', 49520], ['Singapore', 40], ['Solomon Islands', 8], ['South Africa', 13], ['South Korea', 19], ['Spain', 5], ['Sri Lanka', 1], ['Sudan', 1], ['Taiwan', 821], ['Tajikistan', 1], ['Thailand', 393], ['Timor-Leste', 22], ['Trinidad and Tobago', 7], ['Turkey', 6], ['Uganda', 1], ['United Kingdom', 25], ['United States of America', 58], ['Uzbekistan', 3], ['Vietnam', 23], ['Virgin Islands', 1], ['Yemen', 2], ['new guinea', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=79208', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 97, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);