DroneDeploy
Search…
⌃K
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.getCurrentlyViewed
Annotations.selectAnnotation
Annotations.get
Annotations.update
Annotations.getVolume
App Size - Fixing Overflow Problems
CadOverlay.prepare
CadOverlay.import
Exporter.list
Exporter.send
Exporter.getSelectedAutoExportParams
Exporter.createAutoExport
Exporter.closePopup
FlightLogs.getLogsFromPlan
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
Projects.team
Sample Flight Log
Tiles.get - Get Tiles As Array
Tiles.get - Render tiles in map
Authentication
FAQs
Powered By GitBook

Annotations.selectAnnotation

<html>
<head>
<title></title>
<script>
var annotationId = 'a601d78ddc5fdef542728309894895b4a42dc333';
var dd = new DroneDeploy({
version: 1
});
​
dd.then(function(api){
api.Annotations.selectAnnotation(annotationId).subscribe((annotation) => {
console.log(annotation);
});
});
​
</script>
</head>
<body>
<h1>Annotation.selectAnnotation Example</h1>
</body>
</html>
Previous
Annotations.getCurrentlyViewed
Next
Annotations.get
Last modified 1mo ago
Copy link