Exporter
Exporter.send
Exporter.list
Exporter.getSelectedAutoExportParams
Exporter.createAutoExport
Exporter.closePopup
Exporter.get3DModelLink
Exporter.getPointCloudLink
Example Call
dronedeployApi.Exporter.send({
layer: 'Orthomosaic',
email: ['[email protected]']
}).then(function(exportId){ console.log(exportId) });
Parameters
const exportOptions = {
// required
layer: 'Orthomosaic',
email: [String, String],
//optional
file_format: ['geotiff', 'jpg'], // default to geotiff
merge: Boolean, // defaults to true
projection: Number, // defaults to 3857
resolution: ['native', Number], // defaults to 5 (cm/px)
planId: [String], // defaults to currently visible map
webhook: {
url: 'http://www.url-to-ping-on-complete.com/any-params-here' // recieve the export document when its complete
}
};
dronedeployApi.Exporter.send(exportOptions)
.then(function(exportId){ console.log(exportId) });
Example Call
dronedeployApi.Exporter.send({
layer: 'NDVI Toolbox',
email: ['[email protected]']
}).then(function(exportId){ console.log(exportId) });
Parameters
const exportOptions = {
// required
layer: 'NDVI Toolbox',
email: [String, String],
//optional
file_format: ['geotiff', 'jpg', 'shapefile'], // default to geotiff
merge: Boolean, // defaults to true
projection: Number, // defaults to 3857
resolution: ['native', Number], // defaults to 5 (cm/px)
planId: [String], // defaults to currently visible map
webhook: {
url: 'http://www.url-to-ping-on-complete.com/any-params-here' // recieve the export document when its complete
}
};
dronedeployApi.Exporter.send(exportOptions)
.then(function(exportId){ console.log(exportId) });
Example Call
dronedeployApi.Exporter.send({
layer: 'Elevation Toolbox',
email: ['[email protected]']
}).then(function(exportId){ console.log(exportId) });
Parameters
const exportOptions = {
// required
layer: 'Elevation Toolbox',
email: [String, String],
//optional
file_format: ['geotiff', 'jpg', 'demtiff', 'contourshp', 'contourdxf'], // default to geotiff
merge: Boolean, // defaults to true
projection: Number, // defaults to 3857
resolution: ['native', Number], // defaults to 5 (cm/px)
contour_interval: [Number], // default to 1 (meter)
planId: [String], // defaults to currently visible map
webhook: {
url: 'http://www.url-to-ping-on-complete.com/any-params-here' // recieve the export document when its complete
}
};
dronedeployApi.Exporter.send(exportOptions)
.then(function(exportId){ console.log(exportId) });
Example Call
dronedeployApi.Exporter.send({
layer: '3D Model',
email: ['[email protected]']
}).then(function(exportId){ console.log(exportId) });
Parameters
const exportOptions = {
// required
layer: '3D Model',
email: [String, String],
// optional
planId: [String], // defaults to currently visible map
webhook: {
url: 'http://www.url-to-ping-on-complete.com/any-params-here' // recieve the export document when its complete
}
};
dronedeployApi.Exporter.send(exportOptions)
.then(function(exportId){ console.log(exportId) });