Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ExporterOptions

ExporterOptions is an interface that contains the features and filename to export.

example



var geoJSON = { type: "Feature", geometry: { type: 'LineString', coordinates: [[-82.441, 29.200], [-82.441, 29.535]] }, properties: { } };
var exporterOptions = { features: [geoJSON], filename: 'outputfilename' };

Hierarchy

  • ExporterOptions

Index

Properties

Properties

features

features: Feature[]

An array of Feature to be exported.

filename

filename: string

Output file name as string.