-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.js
More file actions
116 lines (101 loc) · 3.34 KB
/
Copy pathmap.js
File metadata and controls
116 lines (101 loc) · 3.34 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
var INSERT_INTERVAL = 1*1000;
var UPDATE_INTERVAL = 60*1000;
var UPDATE_CREATED_INTERVAL = 60*1000;
var UPDATE_DELAY = 1*1000;
$(function() {
var options = {
center: new google.maps.LatLng(35.682085, 139.766221),
zoom: 14,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map($('#map')[0], options);
var queue = new Queue();
var updater = new Updater(map, queue);
var timer = null;
google.maps.event.addListener(map, 'bounds_changed', function(event) {
if (timer != null)
clearTimeout(timer);
timer = setTimeout(function() {
timer = null;
updater.update();
}, UPDATE_DELAY);
});
setInterval(function() {
updater.update();
}, UPDATE_INTERVAL)
$('button').button();
$('input:checkbox').button();
var location = new Location(map);
var go = function() {
location.go($('#loc').val());
};
$('#go').click(go);
$('#loc').keydown(function(event) {
if (event.keyCode == 13) {
go();
event.target.blur();
}
});
$('#home').change(function() {
if (!location.isTracking())
location.startTracking();
else
location.stopTracking();
});
$(location).on('tracking_changed', function() {
$('#home').prop('checked', location.isTracking()).button('refresh');
});
var tweets = new Tweets(map);
$(tweets).on('tweet_added', function(event, tweet, map, marker) {
var element = tweet.createElement();
element.mouseenter(function(event) {
marker.setAnimation(google.maps.Animation.BOUNCE);
});
element.mouseleave(function(event) {
marker.setAnimation(null);
});
element.click(function(event) {
var position = marker.getPosition();
if (!map.getBounds().contains(position))
map.setCenter(position);
});
$('#tweets').prepend(element);
var sidebar = $('#sidebar');
var scrollTop = sidebar.scrollTop();
if (scrollTop == 0) {
element.hide();
element.show('blind', { mode: 'show' }, 'slow');
}
else {
sidebar.scrollTop(scrollTop + element.outerHeight(true) + 1);
}
google.maps.event.addListener(marker, 'mouseover', function(event) {
element.addClass('highlighted');
});
google.maps.event.addListener(marker, 'mouseout', function(event) {
element.removeClass('highlighted');
});
google.maps.event.addListener(marker, 'click', function(event) {
sidebar.animate({
'scrollTop': (sidebar.scrollTop() + element.position().top - 20) + 'px'
}, 'fast');
});
tweet.element = element;
});
$(tweets).on('tweet_removed', function(event, tweet) {
tweet.element.remove();
});
setInterval(function() {
while (true) {
var item = queue.dequeue();
if (!item || tweets.insertTweet(item.tweet, item.position))
break;
}
}, INSERT_INTERVAL);
setInterval(function() {
var now = new Date();
tweets.each(function(tweet) {
tweet.updateCreated(tweet.element, now);
});
}, UPDATE_CREATED_INTERVAL);
});