function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 3582], ['Angola', 2], ['Antigua and Barbuda', 3], ['Armenia', 0], ['Australia', 1], ['Burundi', 2], ['Cameroon', 15], ['Canada', 5], ['Cayman Islands', 2], ['Central African Republic', 0], ['China', 33], ['Colombia', 6], ['Costa Rica', 4], ['Cuba', 0], ['Democratic Republic of the Congo', 22], ['Dominican Republic', 1], ['Ecuador', 579], ['Egypt', 2], ['Equatorial Guinea', 3], ['Ethiopia', 15], ['France', 3], ['Gabon', 3], ['Gambia', 0], ['Georgia', 2], ['Germany', 1], ['Ghana', 1], ['Greece', 1], ['Guatemala', 40], ['Guinea-Bissau', 4], ['Haiti', 0], ['Honduras', 8], ['India', 12], ['India, Nepal, Myanmar', 1], ['Indonesia', 42], ['Iran', 4], ['Israel', 2], ['Italy', 704], ['Ivory Coast', 4], ['Japan', 6], ['Kazakhstan', 1], ['Kenya', 17], ['Liberia', 3], ['Libya', 1], ['Madagascar', 0], ['Malawi', 2], ['Malaysia', 5], ['Mauritania', 0], ['Mexico', 39], ['Mongolia', 0], ['Morocco', 2], ['Mozambique', 1], ['Myanmar', 3], ['Nepal', 3], ['Nigeria', 6], ['Oman', 622], ['Panama', 2], ['Peru', 1], ['Philippines', 8], ['Puerto Rico', 0], ['Republic of the Congo', 3], ['Russia', 13], ['Rwanda', 1], ['Saint Kitts and Nevis', 3], ['Saint Pierre and Miquelon', 7], ['Sao Tome and Principe', 0], ['Senegal', 2], ['Serbia', 0], ['Slovakia', 1], ['Somalia', 2], ['South Africa', 260], ['South Korea', 1], ['Spain', 5], ['Sri Lanka', 8], ['Sudan', 3], ['Sweden', 0], ['Switzerland', 1], ['Syria, Turkey', 1], ['Taiwan', 2], ['Tajikistan', 2], ['Tanzania', 19], ['Thailand', 578], ['Togo', 1], ['Turkey', 19], ['Uganda', 13], ['Ukraine', 0], ['United States of America', 32], ['Venezuela', 2], ['Vietnam', 17], ['Zambia', 3], ['Zimbabwe', 1], ['principe island', 1], ['sao tome island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=6833', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 92, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);