Trimble UX5 Aerial Imaging Solution

Engineered to help mapping and surveying professionals who require the highest accuracy work more efficiently, the Trimble UX5 sets a new standard in mapping and surveying by combining a robust and highly user-friendly system with a custom-designed camera that offers the most impressive deliverables. Made in Belgium Trimble UX5, A new standard in mapping →

Holla

// Sending a call var rtc = holla.connect(); rtc.register(“tom”, function(worked) { holla.createFullStream(function(err, stream) { var call = rtc.call(“bob”); call.addStream(stream); holla.pipe(stream, $(“#myVideo”)); call.on(“answered”, function() { console.log(“Remote user answered the call”); }); console.log(“Calling “, call.user); }); }); // Receiving a call var rtc = holla.connect(); rtc.register(“bob”, function(worked) { rtc.on(“call”, function(call) { console.log(“Inbound call from “, call.user); holla.createFullStream(function(err, …