I have been trying to get work the Wikitude Cordova plugin in an devextreme multi-channel project, but I have not success.
Has anyone had the same problem?
Thanks. :)
A
Andreas Schacherbauer
said
about 7 years ago
Hi Flavio, Can you be a little bit more precise about what exactly is not working for you? It's hard to give some advise based on your previous message.
Best regards,
Andreas
F
Flavio Terranova
said
about 7 years ago
Hi Andreas,
I have integrated the wikitude plugin on devextreme project. ;)
I don't know because my example not show a POI (the same lon/lat on native android sdk show a POI).
//the function executed when the GeoObject exits the field of vision
onExitFieldOfVision: function () { alert("uscito"); },
});
}
catch (ex) {
alert("load ex: " + ex.message);
}
}
A
Andreas Schacherbauer
said
about 7 years ago
Hi Flavio, The reason might be that you try to create AR objects within the scope of your cordova application and not within the Architect World. This will not work. The code you have written in your onARExperienceLoadedSuccessful trigger belongs in the Architect World that you load with a call to ARWikitude.app.wikitudePlugin.loadARchitectWorld.
The Architect World url in your case is defined here: var arExperienceUrl = "";//www/experience/index.html";
What is the content of the .html/.js Architect World that you have written?
Flavio Terranova