Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 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 - World Map</title> |
||
| 6 | |||
| 7 | <link href="../jqvmap/jqvmap.css" media="screen" rel="stylesheet" type="text/css" /> |
||
| 8 | |||
| 9 | <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script> |
||
| 10 | <script src="../jqvmap/jquery.vmap.js" type="text/javascript"></script> |
||
| 11 | <script src="../jqvmap/maps/jquery.vmap.world.js" type="text/javascript"></script> |
||
| 12 | <script src="../jqvmap/data/jquery.vmap.sampledata.js" type="text/javascript"></script> |
||
| 13 | |||
| 14 | <script type="text/javascript"> |
||
| 15 | jQuery(document).ready(function() { |
||
| 16 | jQuery('#vmap').vectorMap({ |
||
| 17 | map: 'world_en', |
||
| 18 | backgroundColor: '#333333', |
||
| 19 | color: '#ffffff', |
||
| 20 | hoverOpacity: 0.7, |
||
| 21 | selectedColor: '#666666', |
||
| 22 | enableZoom: true, |
||
| 23 | showTooltip: true, |
||
| 24 | values: sample_data, |
||
| 25 | scaleColors: ['#C8EEFF', '#006491'], |
||
| 26 | normalizeFunction: 'polynomial' |
||
| 27 | }); |
||
| 28 | }); |
||
| 29 | </script> |
||
| 30 | </head> |
||
| 31 | <body> |
||
| 32 | <div id="vmap" style="width: 600px; height: 400px;"></div> |
||
| 33 | </body> |
||
| 34 | </html> |