font-family: Lato, sans-serif;
color: rgba(0, 0, 0, 0.87);
<h1 class="title sans">Images.get example</h1>
var imageOutput = document.getElementById('images');
function formatOutput(image) {
return `<li class="image-output">
<img src="${image.path}" />
.then(function(dronedeployApi) {
return dronedeployApi.Plans.getCurrentlyViewed()
return dronedeployApi.Images.get(plan.id, options)
imageOutput.innerHTML = images.map(formatOutput).join('');