DroneDeploy
DroneDeploy
Introduction
Introduction
Overview
API
Introduction
Authentication
Pagination
Examples
App Platform
Introduction
App SDK
UI Kit
Javascript API
How to publish an App
App Examples
Annotation create and delete
Annotations.get
Annotations.get
Annotations.getVolume
Annotations.getVolume
App Size - Fixing Overflow Problems
CadOverlay.prepare
CadOverlay.import
Exporter.list
Exporter.send
Exporter.getSelectedAutoExportParams
Exporter.createAutoExport
Exporter.closePopup
Flightlog.getLogsFromPlan
How to Set up a Web Server
How to upload an example project
Images.get
Link.open
Map API Example
Measurement API Example
Messaging.showToast
Payments.charge
Plans - Get Area of Plan
Plans.all
Plans.create
Plans.getCurrentlyViewed
Plans.update - Waypoints
Plans.update
Popup Example
Projects.getCurrentlyViewed
Sample Flight Log
Tiles.get - Get Tiles As Array
Tiles.get - Render tiles in map
Platform Policy
Authentication
FAQs
Powered by GitBook

CadOverlay.prepare

<!DOCTYPE html>
<html lang="en">
​
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
​
<body>
<h3 class="title sans">CadOverlay.preapre example</h3>
<span id="cadoverlay"></span>
<script>
const cadOverlayOutput = document.getElementById('cadoverlay');
​
new DroneDeploy({
version: 1
})
.then(function(dronedeployApi) {
return dronedeployApi.CadOverlay.prepare()
})
.then(function(id) {
cadOverlayOutput.innerHTML = `ID: ${id}`;
});
</script>
</body>
​
</html>
Previous
App Size - Fixing Overflow Problems
Next
CadOverlay.import
Last updated 10 months ago