font-family: Lato, sans-serif;
color: rgba(0, 0, 0, 0.87);
background-color: #039be5;
font-family: Lato, sans-serif;
color: rgba(0, 0, 0, 0.87);
<h1 class="title sans">Export.getSelectedAutoExportParams example</h1>
<button type="button" id="export" class="btn">Get Auto Export Params</button>
<div id="autoExportParams" class="params">
var paramsBtn = document.getElementById('export');
var paramsDiv = document.getElementById('autoExportParams');
.then(function(dronedeployApi) {
paramsBtn.addEventListener('click', function(event) {
dronedeployApi.Exporter.getSelectedAutoExportParams()
.then(function(autoExportParams) {
paramsDiv.innerHTML = `<p class=exportValue>Auto Export Params: fileFormat = ${autoExportParams.fileFormat}</p>`