forked from MTSR/mapserver
20 lines
549 B
JavaScript
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;
|
|
}
|
|
});
|