| 5 |
lars |
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 |
|
|
|
5 |
<head>
|
|
|
6 |
<title>JQVMap - Europe Map</title>
|
|
|
7 |
<link href="../jqvmap/jqvmap.css" media="screen" rel="stylesheet" type="text/css" />
|
|
|
8 |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
|
|
|
9 |
<script src="../jqvmap/jquery.vmap.js" type="text/javascript"></script>
|
|
|
10 |
<script src="../jqvmap/maps/jquery.vmap.europe.js" type="text/javascript"></script>
|
|
|
11 |
<script type="text/javascript">
|
|
|
12 |
jQuery(document).ready(function()
|
|
|
13 |
{
|
|
|
14 |
jQuery('#vmap').vectorMap(
|
|
|
15 |
{
|
|
|
16 |
map: 'europe_en',
|
|
|
17 |
enableZoom: true,
|
|
|
18 |
showTooltip: true,
|
|
|
19 |
multiSelectRegion: true,
|
|
|
20 |
//selectedRegion: ['ES','FR'],
|
|
|
21 |
selectedRegion: 'FR'
|
|
|
22 |
});
|
|
|
23 |
});
|
|
|
24 |
</script>
|
|
|
25 |
</head>
|
|
|
26 |
|
|
|
27 |
<body>
|
|
|
28 |
<div id="vmap" style="width: 680px; height: 520px;"></div>
|
|
|
29 |
</body>
|
|
|
30 |
|
|
|
31 |
</html>
|