1
0
forked from MTSR/mapserver
mapserver/server/static/js/WorldInfoDisplay.js
2019-04-04 10:19:29 +02:00

20 lines
549 B
JavaScript

/* exported WorldInfoDisplay */
// coord display
var WorldInfoDisplay = L.Control.extend({
initialize: function(wsChannel, opts) {
L.Control.prototype.initialize.call(this, opts);
this.wsChannel = wsChannel;
},
onAdd: function() {
var div = L.DomUtil.create('div', 'leaflet-bar leaflet-custom-display');
this.wsChannel.addListener("minetest-info", function(info){
div.innerHTML = "Lag: " + parseInt(info.max_lag*10)/10 + " Time: " + parseInt(info.time)/1000;
});
return div;
}
});