FeatureCollectionTable

constructor(featureSet: FeatureSet)

Creates a FeatureCollectionTable populated from the specified FeatureSet. The FeatureCollectionTable will be populated with the contents of the FeatureSet. Note that this constructor may take some time to complete depending on how many features are in the feature set.

Since

200.1.0


constructor(fields: Iterable<Field>, geometryType: GeometryType, spatialReference: SpatialReference? = null, hasZ: Boolean = false, hasM: Boolean = false)

Creates an empty FeatureCollectionTable from the specified fields, geometry type, spatial reference. The table can contain z and m values.

Since

200.1.0


constructor(geoElements: Iterable<GeoElement>, fields: Iterable<Field>)

Creates a FeatureCollectionTable populated from the specified GeoElement collection. The geometry type and spatial reference will be inferred from the geo-elements passed in. Note that this constructor may take some time to complete depending on how many geo-elements are passed in.

Since

200.1.0