GeoMap

google flash https://code.google.com/apis/ajax/playground/?type=visualization#geo_map https://developers.google.com/chart/interactive/docs/gallery/geomap

by smombartz

HTML

<!--
You are free to copy and use this sample in accordance with the terms of the
Apache license (http://www.apache.org/licenses/LICENSE-2.0.html)
-->

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>Google Visualization API Sample</title>
  <script type="text/javascript" src="http://www.google.com/jsapi"></script>
  <script type="text/javascript">
    google.load('visualization', '1', {packages: ['geomap']});

    function drawVisualization() {
      var data = new google.visualization.DataTable();
      data.addRows(6);
      data.addColumn('string', 'Country');
      data.addColumn('number', 'Popularity');
      data.addColumn('string', 'Popularity');
      data.setValue(0, 0, 'Germany');
      data.setValue(0, 2, 'Lorem ipsum dolor sit amet, \n consectetur adipiscing elit. Donec ac est eu quam tristique posuere \n pharetra sit amet metus. Vivamus po');  
      data.setValue(1, 0, 'United States');
      data.setValue(1, 1, 300);
      data.setValue(2, 0, 'Brazil');
      data.setValue(2, 1, 400);
      data.setValue(3, 0, 'Canada');
      data.setValue(3, 1, 500);
      data.setValue(4, 0, 'France');
      data.setValue(4, 1, 600);
      data.setValue(5, 0, 'RU');
      data.setValue(5, 1, 700);
      data.setValue(5, 2, 'Lorem ipsum dolor sit amet, \n rutrum orci quis odio facil');  
    
      var options = {};
      options['width'] = '100%';
      options['height'] = '100%';
      
      var geomap = new google.visualization.GeoMap(
          document.getElementById('visualization'));
      geomap.draw(data, null);
    }

    google.setOnLoadCallback(drawVisualization);
  </script>
</head>
<body style="font-family: Arial;border: 0 none;">
<div id="visualization" style="width: 100%; height: 100%;"></div>
</body>
</html>