/* Copyright 2019 Adobe All Rights Reserved. NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms of the Adobe license agreement accompanying it. If you have received this file from a source other than Adobe, then your use, modification, or distribution of it requires the prior written permission of Adobe. */ /* Control the default view mode */ const viewerConfig = { /* Allowed possible values are "FIT_PAGE", "FIT_WIDTH" or "" */ defaultViewMode: "", }; /* Wait for Adobe Document Services PDF Embed API to be ready */ document.addEventListener("adobe_dc_view_sdk.ready", function () { /* Initialize the AdobeDC View object */ var adobeDCView = new AdobeDC.View({ /* Pass your registered client id */ clientId: "0090e75d750146a39c54b51a36801856", /* Pass the div id in which PDF should be rendered */ divId: "adobe-dc-view", }); /* Invoke the file preview API on Adobe DC View object */ adobeDCView.previewFile({ /* Pass information on how to access the file */ content: { /* Location of file where it is hosted */ location: { url: "/pdf/bparc-muralwall.pdf", /* If the file URL requires some additional headers, then it can be passed as follows:- headers: [ { key: "", value: "", } ] */ }, }, /* Pass meta data of file */ metaData: { /* file name */ fileName: "bparc-muralwall.pdf" } }, viewerConfig); });