app.wikitudePlugin.loadARchitectWorld(function successFn(loadedURL){ /* Respond to successful world loading if you need to */ console.log("wikitude: Scene loaded successfully"); app.activeScene = scene; console.log('Orientation is ' + screen.orientation); }, function errorFn(error){ console.log('wikitude: Loading AR web view failed: ' + error); navigator.notification.alert("Failed to load the scene, please contact our support team for further information."); }, scene.path, scene.requiredFeatures, scene.startupConfiguration );
I get the success message buy nothing loads, also I'm seeing this warning in the log: Warning: Attempt to present <WTArchitectViewController: 0x17f13320> on <MainViewController: 0x17e780b0> which is already presenting <ForcedViewController: 0x17ef08b0>
Any suggestions?
s
sinda lf
said
about 8 years ago
Same thing for me with phonegap, is it possible to load an ARWorld using backbone.js framework?
A
Andreas Schacherbauer
said
about 8 years ago
Hi Chad, If the success handler is called, the ARchitectView was able to load your ARchitect World (.html file). If you don't see anything, maybe your JavaScript code has some issues. Try to resolve them using Safari Web Inspector on yor Mac in combination with your iOS device.
My debug suggestion always is to remove all the code and start from 0 and add more and more code until you experience the issue again. So start with an alert and then add more and more actual functionality to your application
Best regards
Andreas
A
Andreas Schacherbauer
said
about 8 years ago
@sinda Only the Wikitude SDK in combination with the Wikitude PhoneGap Plugin can load ARchitect Worlds.
Chad Woskoski