Start a new topic

CaptureScreenWithMode without POI and Radar

Hello,
I would like to take a picture without my POI and radar.
I currently use CaptureScreenWithName.
Unfortunately, the picture shows the POI and radar.

Please help me.
 
 var info = new NSDictionary();

 architectView.CaptureScreenWithMode(WTScreenshotCaptureMode._Cam, WTScreenshotSaveMode._Delegate, WTScreenshotSaveOptions.CallDelegateOnSuccess, new NSDictionary(info));

 

1 Comment

Hello,

You need to manually hide the Radar and all of your POIs before taking the screenshot. There is no build in functionality for that. You can get the cam, radar or inidcator drawables from each GeoObject or Trackable2DObject but you need to keep your own list of those created GeoObjects & Trackable2DObjects.
 

var geoObject = new AR.GeoObject(...);
var geoObjectCamDrawables = geoObject.drawables.cam;

var trackable = new AR.Trackable2DObject(...);
var trackableCamDrawables = trackable.drawables.cam;

 

Thanks

Eva

 

Login or Signup to post a comment