greece.html 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <title>JQVMap - Greece Map</title>
  6. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  7. <link href="../dist/jqvmap.css" media="screen" rel="stylesheet" type="text/css"/>
  8. <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
  9. <script type="text/javascript" src="../dist/jquery.vmap.js"></script>
  10. <script type="text/javascript" src="../dist/maps/jquery.vmap.greece.js" charset="utf-8"></script>
  11. <script>
  12. jQuery(document).ready(function () {
  13. jQuery('#vmap').vectorMap({
  14. map: 'greece',
  15. onRegionClick: function (element, code, region) {
  16. var message = 'You clicked "'
  17. + region
  18. + '" which has the code: '
  19. + code.toUpperCase();
  20. alert(message);
  21. }
  22. });
  23. });
  24. </script>
  25. </head>
  26. <body>
  27. <div id="vmap" style="width: 700px; height: 637px;"></div>
  28. </body>
  29. </html>