junaio

What's new in Junaio 4.7 (API Level 11)

 

New AREL APIs

We added some new AREL APIs to the latest version of junaio. You can find a list below:

 

 

Improved tracking and rendering performance

Based on the metaio SDK 4.5, the tracking and rendering performance is increased by more than 20%. Thus you will experience a higher framerate on all devices running junaio 4.7

Improved communication component

The downloading and caching component has been improved to deliver a more accurate progress callback as well as detecting changed files on the servers automatically.

 

junaio Webinars

junaio's API

junaio offers a free, web-based API that enables you to use your existing knowledge and skills in web languages to create exciting Augmented Reality experiences. junaio not only supports Location-based Augmented reality, but also image-based tracking, so you can focus on creating the best experience, while we worry about giving you the tools you need.

Creating Your junaio Channel

You can imagine a junaio Channel like a website or a TV channel. junaio acts as a distributions platform or a browser for your experiences. So it offers users all over the world a way to find your experience, which they can “tune in” to see.

A Channel can hold interesting information about a location (e.g. London City Guide) or a topic (e.g. restaurants and movie theaters). Also information about an object or image can be linked (e.g. additional media content for a magazine). From a developer’s perspective, the Channel is just a link to your server where the content is stored.

Get started today and Sign Up as a junaio Developer for free!

POIs in your area
Allow filtering of Location Based information instantly
Details screen with additional links
AR Trooper Shooter
junaio GLUE Currency Converter
junaio GLUE Interactive Soccer Game
junaio GLUE enhanced Science Magazine Welt der Wunder
junaio GLUE Mobile World Congress 2012 Ad

What's new in junaio 4.6?

Support for gesture handling in your channels

You can drag, scale and rotate your models inside your channels using the AREL gestureHandler. If you want to know how to use it just look inside this Gesture Handler Quickstart Tutorial.

Using screen anchors for fixed-to-screen objects

The screen anchors will help you to set your object  relative to screen with fixed position. These objects now rotate as you rotate your phone.  Check out this Screen Anchor Quickstart Tutorial to learn how to use them. (By the way, the old 'relative-to-screen' parameters should not be used anymore and are deprecated)

Renderer now supports Anti-Aliasing

Your models will look nicer in the new version of junaio, as we're applying anti aliasing in the renderer.

New Media Callbacks

Instead of registering to a URL for callbacks, you can now register to a global callback that will receive all media callbacks: arel.Events.setListener(arel.Media, ... ). Have a look at this quickstart to learn more.

Improved QR- and barcode reader

The QR- and Barcode readers are now more stable, work with rotated device and deliver no more false positives.

 

Latest Tracking Technology from metaio

We've integrated the latest tracking technology from the metaio SDK. Use it together with the metaio toolbox to get extremely robust 3D tracking. Also the loading of tracking configurations works much faster now.

Continuous Visual Search

It is now possible to use the Continuous Visual Search feature also in your channel. Just buy a license inside the metaio dev portal and use it in you AREL script like this:

    arel.Events.setListener(arel.Scene,function(type,param){getCVSResult(type,param);});
     
    arel.Scene.requestVisualSearch("YOUR_DATABASE_ID");
     
    function getCVSResult(type,param){
     
    	if(type == "onvisualsearchresult") {
     
    		//Inside the param variable are your results
     
    	}
     
    }