ExporterOptions is an interface that contains the features and filename to export.
var geoJSON = { type: "Feature", geometry: { type: 'LineString', coordinates: [[-82.441, 29.200], [-82.441, 29.535]] }, properties: { } }; var exporterOptions = { features: [geoJSON], filename: 'outputfilename' };
An array of Feature to be exported.
Output file name as string.
ExporterOptions is an interface that contains the features and filename to export.
var geoJSON = { type: "Feature", geometry: { type: 'LineString', coordinates: [[-82.441, 29.200], [-82.441, 29.535]] }, properties: { } };
var exporterOptions = { features: [geoJSON], filename: 'outputfilename' };