forked from benya/jqvmap-ukraine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
59 lines (37 loc) · 814 Bytes
/
index.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<!--
jqvmap-ukraine-v1,
11.2015,
Alexander Bendyuzhko,
bendyuzhko@gmail.com,
https://github.com/benya/jqvmap-ukraine
-->
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Карта Украины</title>
<link href="./css/jqvmap.css" rel="stylesheet">
<script src="https://yastatic.net/jquery/2.1.4/jquery.min.js"></script>
<script src="./js/jqvmap.js"></script>
<script src="./js/ukraine.js"></script>
<script>
jQuery(document).ready(function() {
jQuery('#ua').vectorMap(
{
map: 'ukraine',
backgroundColor: 'white',
borderColor: '#FF9900',
borderOpacity: 0.60,
borderWidth: 2,
color: '#1076C8',
hoverColor: '#0A4C82',
selectedColor: '#FF9900',
}
);
});
</script>
</head>
<body>
<div id="ua"></div>
</body>
</html>