-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
71 lines (64 loc) · 1.75 KB
/
index.html
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
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>jVectorMap demo</title>
<link rel="stylesheet" media="all" href="jquery-jvectormap.css"/>
<script src="jquery-1.7.2.min.js"></script>
<script src="jquery-jvectormap.js"></script>
<script src="timezones.js"></script>
<script>
$(function(){
$('#map').vectorMap({
map: 'tz_mill_en',
hoverOpacity: 0.8,
hoverColor: false,
colors: {
"-01:00": '#8DD3C7',
"-02:00": '#FFFFB3',
"-03:00": '#BEBADA',
"-04:00": '#FB8072',
"-05:00": '#80B1D3',
"-06:00": '#FDB462',
"-07:00": '#B3DE69',
"-08:00": '#8DD3C7',
"-09:00": '#FFFFB3',
"-10:00": '#BEBADA',
"-11:00": '#FB8072',
"+00:00": '#80B1D3',
"+01:00": '#FDB462',
"+02:00": '#B3DE69',
"+03:00": '#8DD3C7',
"+04:00": '#FFFFB3',
"+05:00": '#BEBADA',
"+06:00": '#FB8072',
"+07:00": '#80B1D3',
"+08:00": '#FDB462',
"+09:00": '#B3DE69',
"+10:00": '#8DD3C7',
"+11:00": '#FFFFB3',
"+12:00": '#BEBADA',
"+13:00": '#80B1D3',
"+14:00": '#FB8072',
"-02:30": '#FDB462',
"-03:30": '#FDB462',
"-04:30": '#B3DE69',
"-09:30": '#8DD3C7',
"+03:30": '#FFFFB3',
"+04:30": '#BEBADA',
"+05:30": '#80B1D3',
"+05:45": '#FB8072',
"+06:30": '#FDB462',
"+08:45": '#B3DE69',
"+09:30": '#8DD3C7',
"+10:30": '#FFFFB3',
"+11:30": '#BEBADA',
"+12:45": '#80B1D3'
}
});
})
</script>
</head>
<body>
<div id="map" style="width: 1000px; height: 600px"></div>
</body>
</html>