Start a new topic

Cordova Integration

Cordova Integration


Hello I added the plugin to my application.

I copied and paste the JS code from the image integration (cordova) and I called it on my init()

 

my init() :

 

$scope.loadar();

 

loadar() :

var World = {

loaded: false,

 

init: function initFn() {

this.createOverlays();

},

 

createOverlays: function createOverlaysFn() {

this.tracker = new AR.ClientTracker("assets/tracker.wtc", {

onLoaded: this.worldLoaded

});

 

 

/* Create overlay for page one */

var imgOne = new AR.ImageResource("assets/house.jpg");

var overlayOne = new AR.ImageDrawable(imgOne, 1, {

offsetX: -0.15,

offsetY: 0

});

 

 

var pageOne = new AR.Trackable2DObject(this.tracker, "*", {

drawables: {

cam: overlayOne

}

});

},

 

worldLoaded: function worldLoadedFn() {

var cssDivLeft = " style='display: table-cell;vertical-align: middle; text-align: right; width: 50%; padding-right: 15px;'";

var cssDivRight = " style='display: table-cell;vertical-align: middle; text-align: left;'";

document.getElementById('loadingMessage').innerHTML =

"<div" + cssDivLeft + ">Scan Target &#35;1 (surfer):</div>" +

"<div" + cssDivRight + "><img src='assets/surfer.png'></img></div>";

 

// Remove Scan target message after 10 sec.

setTimeout(function() {

var e = document.getElementById('loadingMessage');

e.parentElement.removeChild(e);

}, 10000);

}

};

 

World.init();

 

_______________________________

 

im getting a console error like this:

angular.js:12330 ReferenceError: AR is not defined

    at Object.createOverlaysFn (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/app/pages/newsView/newsViewController.js?bust=1453264389:39:40)

    at Object.initFn (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/app/pages/newsView/newsViewController.js?bust=1453264389:30:26)

    at n.$scope.test (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/app/pages/newsView/newsViewController.js?bust=1453264389:78:19)

    at n.$scope.init (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/app/pages/newsView/newsViewController.js?bust=1453264389:19:20)

    at fn (eval at <anonymous> (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/libs/angular/angular.min.js:212:83), <anonymous>:4:203)

    at n.$eval (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/libs/angular/angular.min.js:134:493)

    at pre (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/libs/angular/angular.min.js:255:139)

    at Y (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/libs/angular/angular.min.js:73:89)

    at S (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/libs/angular/angular.min.js:61:363)

    at g (http://appery.io/app/view/419643dc-8eae-4c85-9f2b-8e1557cbd152/libs/angular/angular.min.js:54:384) <div show-header="true" show-footer="true" show-top-tabs="true" show-tabs="true" ng-controller="newsView" ng-init="init()" class="aio-empty-screen padding">

 

 

 

Please HELP! 

 

 

Hi Ronnel,
Why did you copy the example code into the cordova application? This is wrong and can not work. The cordova application uses the Wikitude plugin to load Architect Worlds. Architect World code has to be written in a seperate .html/js/css file. Cordova applications don't understand AR. objects and that's why you see the errors.

Your application needs to load Architect World as shown in our Cordova example application. Please refer to the mentioned example application on how to write an application for Cordova.

Best regards

Andreas

Oh okay, do I need the ade.js for it to work on my device though?

Hmmm. can you make a step by step procedure because I really cannot understand how to implement this plugin after adding it on my cordovaplugins.

many thanks!

Hi Ronnel,
ade.js is only needed for debugging Architect Worlds on your desktop computer. It is not required for Architect Worlds running on a device.

Please read through our SDK and Cordova documentation for a detailed step by step guide.

Best regards

Andreas

Hello I managed to launch the wikitude augmented reality mode, however it does not do anything just a mere camera app with a trial texts on it.

doesn't detect my tracker? or what?

 

is this correct? :

<li><a href="javascript:app.loadARchitectWorld(getSamplePath(0, 0));">1.1 Image on Target</a></li>

___


// This file and it's content is automatically generated and should not be altered!

var samples =

 

function getSamplePath(category, sample) {

return samples;

 

}

 

 

Thanks


 

 

 

Anyone please help....

Hi Ronnel,
Simply add a .html+.js file (your architect world) to your application, call the `loadARchitectWorld()` function with an object in the correct json format (see snippet below) and you're good to go. 
I would also recommend you to start from a newly generated project and not from our example. Our example should only be a reference for your own implementation. I guess you are just confused by how the example application loads different examples. Concentrate to understand loadCustomARchitectWorldFromURL and loadARchitectWorld, found in index.js. The url to your Architect World is either relative to your cordovas www folder or a url that points to an Architect World on a server.

```
loadCustomARchitectWorldFromURL: function(url) {

        var world = {

            "path": url,

            "requiredFeatures": ,

            "startupConfiguration": {

                "camera_position": "back"

            }

        };

        app.loadARchitectWorld(world);

```

Best regards

Andreas
hello, I make all what docus says, and when a run my app in phonegap it open de camera with trial marks, but it shows many alerts like 'get_init:3' .. and the apps get stuck not work anymore, I've cheked the code many times and everythings looks like the example, I donnot know what's wrong. Please helpme, I'm working with cordova CLI
Login or Signup to post a comment