openwebrx-clone/htdocs/map.js

340 lines
12 KiB
JavaScript
Raw Normal View History

2019-07-01 14:49:39 +00:00
(function(){
var protocol = 'ws';
if (window.location.toString().startsWith('https://')) {
protocol = 'wss';
}
2019-07-06 13:04:39 +00:00
var query = window.location.search.replace(/^\?/, '').split('&').map(function(v){
var s = v.split('=');
2019-07-09 15:32:49 +00:00
var r = {};
r[s[0]] = s.slice(1).join('=');
2019-07-06 13:04:39 +00:00
return r;
}).reduce(function(a, b){
return a.assign(b);
});
var expectedCallsign;
if (query.callsign) expectedCallsign = query.callsign;
var expectedLocator;
if (query.locator) expectedLocator = query.locator;
2019-07-06 13:04:39 +00:00
2019-07-01 14:49:39 +00:00
var ws_url = protocol + "://" + (window.location.origin.split("://")[1]) + "/ws/";
if (!("WebSocket" in window)) return;
var map;
var markers = {};
2019-07-06 20:43:36 +00:00
var rectangles = {};
var updateQueue = [];
2019-07-07 18:46:12 +00:00
// reasonable default; will be overriden by server
var retention_time = 2 * 60 * 60 * 1000;
2019-07-09 15:32:49 +00:00
var strokeOpacity = 0.8;
var fillOpacity = 0.35;
2019-07-07 18:46:12 +00:00
2019-07-28 13:28:39 +00:00
var colorKeys = {};
2019-07-28 14:26:03 +00:00
var colorScale = chroma.bezier(['red', 'blue', 'green']).scale();
2019-07-28 13:28:39 +00:00
var getColor = function(id){
if (!id) return "#000000";
if (!colorKeys[id]) {
var keys = Object.keys(colorKeys);
keys.push(id);
keys.sort();
2019-07-28 14:26:03 +00:00
var colors = colorScale.colors(keys.length);
2019-07-28 13:28:39 +00:00
colorKeys = {};
keys.forEach(function(key, index) {
colorKeys[key] = colors[index];
});
reColor();
2019-07-28 13:57:33 +00:00
updateLegend();
2019-07-28 13:28:39 +00:00
}
return colorKeys[id];
}
// when the color palette changes, update all grid squares with new color
var reColor = function() {
$.each(rectangles, function(_, r) {
var color = getColor(colorAccessor(r));
2019-07-28 13:28:39 +00:00
r.setOptions({
strokeColor: color,
fillColor: color
});
});
}
var colorMode = 'byband';
var colorAccessor = function(r) {
switch (colorMode) {
case 'byband':
return r.band;
case 'bymode':
return r.mode;
}
};
$(function(){
$('#openwebrx-map-colormode').on('change', function(){
colorMode = $(this).val();
colorKeys = {};
reColor();
updateLegend();
});
});
2019-07-28 13:57:33 +00:00
var updateLegend = function() {
var lis = $.map(colorKeys, function(value, key) {
2019-07-28 14:33:19 +00:00
return '<li class="square"><span class="illustration" style="background-color:' + chroma(value).alpha(fillOpacity) + ';border-color:' + chroma(value).alpha(strokeOpacity) + ';"></span>' + key + '</li>';
2019-07-28 13:57:33 +00:00
});
$(".openwebrx-map-legend .content").html('<ul>' + lis.join('') + '</ul>');
}
var processUpdates = function(updates) {
if (!map) {
updateQueue = updateQueue.concat(updates);
return;
}
updates.forEach(function(update){
2019-07-06 13:04:39 +00:00
2019-07-06 20:43:36 +00:00
switch (update.location.type) {
case 'latlon':
2019-07-09 15:32:49 +00:00
var pos = new google.maps.LatLng(update.location.lat, update.location.lon);
2019-07-07 18:46:12 +00:00
var marker;
2019-07-06 20:43:36 +00:00
if (markers[update.callsign]) {
2019-07-07 18:46:12 +00:00
marker = markers[update.callsign];
2019-07-06 20:43:36 +00:00
} else {
2019-07-07 18:46:12 +00:00
marker = new google.maps.Marker();
2019-07-11 19:21:01 +00:00
marker.addListener('click', function(){
showMarkerInfoWindow(update.callsign, pos);
});
2019-07-07 18:46:12 +00:00
markers[update.callsign] = marker;
2019-07-06 20:43:36 +00:00
}
2019-07-07 18:46:12 +00:00
marker.setOptions($.extend({
position: pos,
map: map,
title: update.callsign
}, getMarkerOpacityOptions(update.lastseen) ));
marker.lastseen = update.lastseen;
2019-07-11 21:40:09 +00:00
marker.mode = update.mode;
marker.band = update.band;
2019-07-06 20:43:36 +00:00
// TODO the trim should happen on the server side
if (expectedCallsign && expectedCallsign == update.callsign.trim()) {
map.panTo(pos);
2019-07-11 19:21:01 +00:00
showMarkerInfoWindow(update.callsign, pos);
2019-07-06 20:43:36 +00:00
delete(expectedCallsign);
}
break;
case 'locator':
var loc = update.location.locator;
var lat = (loc.charCodeAt(1) - 65 - 9) * 10 + Number(loc[3]);
2019-07-06 21:15:33 +00:00
var lon = (loc.charCodeAt(0) - 65 - 9) * 20 + Number(loc[2]) * 2;
var center = new google.maps.LatLng({lat: lat + .5, lng: lon + 1});
2019-07-06 20:43:36 +00:00
var rectangle;
// the accessor is designed to work on the rectangle... but it should work on the update object, too
var color = getColor(colorAccessor(update));
2019-07-06 20:43:36 +00:00
if (rectangles[update.callsign]) {
rectangle = rectangles[update.callsign];
} else {
rectangle = new google.maps.Rectangle();
rectangle.addListener('click', function(){
2019-07-28 14:36:12 +00:00
showLocatorInfoWindow(this.locator, this.center);
});
2019-07-06 20:43:36 +00:00
rectangles[update.callsign] = rectangle;
}
2019-07-07 18:46:12 +00:00
rectangle.setOptions($.extend({
2019-07-28 13:28:39 +00:00
strokeColor: color,
2019-07-06 20:43:36 +00:00
strokeWeight: 2,
2019-07-28 13:28:39 +00:00
fillColor: color,
2019-07-06 20:43:36 +00:00
map: map,
bounds:{
north: lat,
south: lat + 1,
west: lon,
2019-07-06 21:15:33 +00:00
east: lon + 2
2019-07-06 20:43:36 +00:00
}
2019-07-07 18:46:12 +00:00
}, getRectangleOpacityOptions(update.lastseen) ));
rectangle.lastseen = update.lastseen;
rectangle.locator = update.location.locator;
2019-07-11 21:40:09 +00:00
rectangle.mode = update.mode;
rectangle.band = update.band;
2019-07-28 14:36:12 +00:00
rectangle.center = center;
if (expectedLocator && expectedLocator == update.location.locator) {
map.panTo(center);
2019-07-11 19:21:01 +00:00
showLocatorInfoWindow(expectedLocator, center);
delete(expectedLocator);
}
2019-07-06 20:43:36 +00:00
break;
2019-07-06 13:04:39 +00:00
}
});
2019-07-09 15:32:49 +00:00
};
2019-07-10 21:13:03 +00:00
var clearMap = function(){
var reset = function(callsign, item) { item.setMap(); };
$.each(markers, reset);
$.each(rectangles, reset);
markers = {};
rectangles = {};
};
2019-07-13 19:44:48 +00:00
var reconnect_timeout = false;
2019-07-10 21:13:03 +00:00
var connect = function(){
var ws = new WebSocket(ws_url);
ws.onopen = function(){
ws.send("SERVER DE CLIENT client=map.js type=map");
2019-07-13 19:44:48 +00:00
reconnect_timeout = false
2019-07-10 21:13:03 +00:00
};
ws.onmessage = function(e){
if (typeof e.data != 'string') {
console.error("unsupported binary data on websocket; ignoring");
return
}
if (e.data.substr(0, 16) == "CLIENT DE SERVER") {
console.log("Server acknowledged WebSocket connection.");
return
}
try {
var json = JSON.parse(e.data);
switch (json.type) {
case "config":
var config = json.value;
if (!map) $.getScript("https://maps.googleapis.com/maps/api/js?key=" + config.google_maps_api_key).done(function(){
map = new google.maps.Map($('.openwebrx-map')[0], {
center: {
lat: config.receiver_gps[0],
lng: config.receiver_gps[1]
},
zoom: 5
});
processUpdates(updateQueue);
updateQueue = [];
$.getScript("/static/lib/nite-overlay.js").done(function(){
nite.init(map);
setInterval(function() { nite.refresh() }, 10000); // every 10s
});
2019-07-28 13:57:33 +00:00
map.controls[google.maps.ControlPosition.LEFT_BOTTOM].push($(".openwebrx-map-legend")[0]);
2019-07-06 22:52:11 +00:00
});
2019-07-10 21:13:03 +00:00
retention_time = config.map_position_retention_time * 1000;
break;
case "update":
processUpdates(json.value);
break;
}
} catch (e) {
// don't lose exception
console.error(e);
2019-07-01 17:49:58 +00:00
}
2019-07-10 21:13:03 +00:00
};
ws.onclose = function(){
clearMap();
2019-07-13 19:44:48 +00:00
if (reconnect_timeout) {
// max value: roundabout 8 and a half minutes
reconnect_timeout = Math.min(reconnect_timeout * 2, 512000);
} else {
// initial value: 1s
reconnect_timeout = 1000;
}
setTimeout(connect, reconnect_timeout);
2019-07-10 21:13:03 +00:00
};
2019-07-01 14:49:39 +00:00
2019-07-10 21:13:03 +00:00
window.onbeforeunload = function() { //http://stackoverflow.com/questions/4812686/closing-websocket-correctly-html5-javascript
ws.onclose = function () {};
ws.close();
};
/*
ws.onerror = function(){
console.info("websocket error");
};
*/
2019-07-01 14:49:39 +00:00
};
2019-07-10 21:13:03 +00:00
connect();
var infowindow;
2019-07-11 19:21:01 +00:00
var showLocatorInfoWindow = function(locator, pos) {
if (!infowindow) infowindow = new google.maps.InfoWindow();
var inLocator = $.map(rectangles, function(r, callsign) {
return {callsign: callsign, locator: r.locator, lastseen: r.lastseen, mode: r.mode, band: r.band}
}).filter(function(d) {
return d.locator == locator;
2019-07-11 18:53:59 +00:00
}).sort(function(a, b){
return b.lastseen - a.lastseen;
});
infowindow.setContent(
'<h3>Locator: ' + locator + '</h3>' +
'<div>Active Callsigns:</div>' +
'<ul>' +
inLocator.map(function(i){
var timestring = moment(i.lastseen).fromNow();
var message = i.callsign + ' (' + timestring + ' using ' + i.mode;
if (i.band) message += ' on ' + i.band;
message += ')';
return '<li>' + message + '</li>'
}).join("") +
'</ul>'
);
infowindow.setPosition(pos);
infowindow.open(map);
2019-07-09 15:32:49 +00:00
};
2019-07-11 19:21:01 +00:00
var showMarkerInfoWindow = function(callsign, pos) {
if (!infowindow) infowindow = new google.maps.InfoWindow();
var marker = markers[callsign];
var timestring = moment(marker.lastseen).fromNow();
infowindow.setContent(
'<h3>' + callsign + '</h3>' +
2019-07-13 15:20:03 +00:00
'<div>' + timestring + ' using ' + marker.mode + '</div>'
2019-07-11 19:21:01 +00:00
);
infowindow.open(map, marker);
}
2019-07-07 18:46:12 +00:00
var getScale = function(lastseen) {
var age = new Date().getTime() - lastseen;
var scale = 1;
if (age >= retention_time / 2) {
scale = (retention_time - age) / (retention_time / 2);
}
return Math.max(0, Math.min(1, scale));
2019-07-09 15:32:49 +00:00
};
2019-07-07 18:46:12 +00:00
var getRectangleOpacityOptions = function(lastseen) {
var scale = getScale(lastseen);
return {
strokeOpacity: strokeOpacity * scale,
fillOpacity: fillOpacity * scale
};
2019-07-09 15:32:49 +00:00
};
2019-07-07 18:46:12 +00:00
var getMarkerOpacityOptions = function(lastseen) {
var scale = getScale(lastseen);
return {
opacity: scale
};
2019-07-09 15:32:49 +00:00
};
2019-07-07 18:46:12 +00:00
// fade out / remove positions after time
setInterval(function(){
var now = new Date().getTime();
$.each(rectangles, function(callsign, m) {
var age = now - m.lastseen;
if (age > retention_time) {
delete rectangles[callsign];
m.setMap();
return;
}
m.setOptions(getRectangleOpacityOptions(m.lastseen));
});
$.each(markers, function(callsign, m) {
var age = now - m.lastseen;
if (age > retention_time) {
delete markers[callsign];
m.setMap();
return;
}
m.setOptions(getMarkerOpacityOptions(m.lastseen));
});
}, 1000);
2019-07-01 14:49:39 +00:00
})();