FeatureTypeDetails required.
FeatureTypeDetails required.
The featureType property of a feature FeatureTypeDetails.
The geometry property of a feature GeometryObject.
The geometry property of a feature GeometryObject.
The properties of a feature FeatureProperties.
The properties of a feature FeatureProperties.
The type property of a feature ("Feature").
Convert this feature to json
json.
Convert this feature to json
json.
Feature is an implementation of IFeature.
var exampleIFeature = { type: "Feature", geometry: { type: "Point", coordinates: [-82.4414, 29.2001] }, properties: { ID: 1, SPOT: 'y' } };
var featureTypeDetails = { id: 'ID', name: 'SPOT', description: 'SPOT', supportedGeometryTypes: ["Point"], attributes: DrawFeatureCommand.getAttributeMetaData(new AttributeExtensionCollection(), exampleFeature, 'ID') };
var feature = new Feature(featureTypeDetails);