Overview
For cases requiring bounding boxes in a PDF and auto-scrolling from interface actions.
Key Features & Functionality
Example using “boundingBoxesDocumentUrl”:
reconcileDocumentViewer( documentUrl: document(cons!MY_DOCUMENT, "url"), boundingBoxesDocumentUrl: document(cons!MY_BOUNDING_BOXES_JSON, "url"))
Example usage using “boundingBoxes”:
reconcileDocumentViewer( documentUrl: document(cons!MY_DOCUMENT, "url"), boundingBoxes: { a!map( id: "1", text: "hello", pageNumber: 1, geometry: a!map( top: 0.05, left: 0.05, width: 0.05, height: 0.05 ), defaultHidden: false, /* optional, defaults true */ type: "type1", /* optional, used along with "selectableTypes", this bounding box will be selectable if "selectableTypes" is empty or if its value is contained within "selectableTypes" */ ) })
Usage considerations: