i am working with an android AR application.I am using Wikitude SDK for implementing augmented reality.
I have developed a augmented reality app.Now i need to place AR Object always in front of the Device.
I have used AR.RelativeLocation to place the AR Object relative to user location.But it always shows north to user location.
var markerLocation =new AR.RelativeLocation(null,50 ,0, 0);
My requirement is to place the Object directly in front of the device camera. Please suggest the appropriate way to implement this.Can i implement this by changing the AR.RelativeLocation parameters.
Thanks in Advance!