forked from dosx/timezone-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenlayers_example.html
51 lines (47 loc) · 1.14 KB
/
openlayers_example.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
<html>
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<script type="text/javascript" src="OpenLayers.js"></script>
<script type="text/javascript" src="jquery.timezone-picker.js"> </script>
<script>
$(function() {
$("#zonepicker").timezonePicker({
initialLat: 20,
initialLng: 0,
initialZoom: 2,
onReady: function() {
$("#zonepicker").timezonePicker('selectZone', 'America/New_York');
},
onHover: function(utcOffset, tzNames) {
$('#label').text(tzNames.join(',') + ': ' + utcOffset + ' minutes');
},
mapOptions: {
maxZoom: 6,
minZoom: 2
},
useOpenLayers: true
});
});
</script>
<style>
.timezone-picker-infowindow {
color: #444;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: left;
}
.timezone-picker-infowindow h2 {
margin: 4px 0;
}
</style>
</head>
<body>
<center>
<div id="zonepicker" style="width: 960px; height: 500px;">
</div>
<div id="label"></div>
</center>
</body>
</html>