-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
216 lines (186 loc) · 6.68 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!-- Hey, let's be friends! http://twitter.com/pubnub -->
<style>
#map {
display: inline-block;
margin: 10px;
width: 600px;
height: 80px;
background: #eee;
}
#status {
background: #b9d1e4;
border-radius: 6px;
padding: 20px;
margin: 10px;
color: #fff;
font-size: 29px;
font-family: "Helvetica Neue";
font-weight: 100;
}
#input {
padding: 10px 5px 5px 5px;
margin: 10px;
border: 0;
border-bottom: 1px solid #333;
outline: none;
font-size: 20px;
font-family: "Helvetica Neue";
}
#box {
margin: 10px;
font-size: 20px;
font-family: "Helvetica Neue";
font-weight: 100;
}
.spinner {
display: inline-block;
width: 20px;
height: 20px;
margin: 1px 10px 1px 1px;
position: relative;
border: 2px solid rgb(255,255,255);
border-top-color: transparent;
border-radius: 100%;
-webkit-animation: spin 1s infinite linear;
-moz-animation: spin 1s infinite linear;
-ms-animation: spin 1s infinite linear;
-o-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
}
@-webkit-keyframes spin { to { -webkit-transform: rotate(360deg); } }
@-moz-keyframes spin { to { -moz-transform: rotate(360deg); } }
@-ms-keyframes spin { to { -ms-transform: rotate(360deg); } }
@-o-keyframes spin { to { -o-transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
</style>
<!-- Status -->
<div id="status">
<span class="spinner"></span>
<span id="status-message">Acquiring Your Location...</span>
</div>
<!-- Map -->
<div><img id="map" src="http://maps.googleapis.com/maps/api/staticmap?center=San+Francisco,CA&zoom=13&size=600x80&maptype=roadmap&sensor=false"></div>
<!-- Input Chat Box -->
<input id="input" placeholder="Chat here">
<!-- Output Chat Box -->
<div id="box"></div>
<script src=http://cdn.pubnub.com/pubnub.min.js></script>
<script src=sound.js></script>
<script>(function(){
var pubnub = PUBNUB({})
, box = pubnub.$('box')
, input = pubnub.$('input')
, map = pubnub.$('map')
, statusmsg = pubnub.$('status-message')
, status = pubnub.$('status')
, coords = { latitude : 0.0, longitude : 0.0 }
, channel = 'my_channel';
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Get Location
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
location(function(pos){
channel = geohash(pos.latitude) + '' + geohash(pos.longitude);
statusmsg.innerHTML = pubnub.supplant(
'Connecting to "{channel}"',
{ channel : channel }
);
// Map
map.src = pubnub.supplant(
'http://maps.googleapis.com/maps/api/staticmap?' +
'center={latitude},{longitude}&zoom=13&size=600x80' +
'&markers=color:red%7Clabel:d%7C{latitude},{longitude}' +
'&maptype=roadmap&sensor=false',
pos
);
coords.latitude = pos.latitude;
coords.longitude = pos.longitude;
// Connect to Proximity Channel
pubnub.subscribe({
channel : channel,
message : receive,
connect : ready,
presence : presence
});
});
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Connection Ready
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
function ready(data) {
status.innerHTML = pubnub.supplant(
'You are chatting with people near: <strong>{channel}</strong>.',
{ channel : channel }
);
input.focus();
// History
pubnub.history({
limit : 100,
channel : channel,
callback : function(msgs) {
pubnub.each( msgs[0], printout );
}
});
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Presence
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
function presence(data) {
printout(pubnub.supplant( 'A user {action} occured.', data ));
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Receive Data
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
function receive(data) {
printout(data);
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Geo Hash
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
function geohash( coord, resolution ) {
var rez = Math.pow( 10, resolution || 0 );
return Math.floor(coord * rez) / rez;
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Update UI Output
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
function printout(text) {
// Play sound here
sounds.play('chat');
// Update text output here
box.innerHTML = safe_text(text) + '<br>' + box.innerHTML;
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Send UI
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
pubnub.bind( 'keyup', input, function(e) {
if ((e.keyCode || e.charCode) !== 13) return;
send(input.value);
input.value = '';
});
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Send Message
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
function send(text) {
pubnub.publish({ channel : channel, message : text });
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Safe Text
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
function safe_text(text) {
return (''+text).replace( /[<>]/g, '' );
}
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
// Geo Location
// -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
function location(callback) {
function success(pos) { callback(pos.coords) }
function error(err) {
callback({ latitude : 0.0, longitude : 0.0 });
};
// Get Lat/Long
navigator.geolocation.getCurrentPosition( success, error, {
enableHighAccuracy : true,
timeout : 5000,
maximumAge : 0
} );
}
})();</script>