['Country', 'Posts'], ['USA', 700], ['Pan-Latin America', 2000]<html lang="en-gb" dir="ltr">
<head>
<meta charset="utf-8">
<script src="https://maps.googleapis.com/maps/api/js?key=" type="text/javascript"></script>
<script src="https://www.google.com/jsapi" type="text/javascript"></script>
</head>
<script type="text/javascript">google.load('visualization','1', {'packages':['geochart']});
google.setOnLoadCallback(function() {
var googleGeoData = null;
googleGeoData = google.visualization.arrayToDataTable([
['Country', 'Posts'],
['USA', 700],
['Pan-Latin America', 2000]
]);
var geoMap = new google.visualization.GeoChart(document.getElementById('regions_div'));
var options = {};
geoMap.clearChart();
geoMap.draw(googleGeoData, options);
});
</script>
<body><div id="regions_div" style="width: 900px; height: 500px;"></div></body>
</html>