The optional bucketKey property is used to specify the graphic bucket to use.
options.bucketKey = 'default';
The features to draw.
The optional graphicOptions property is used to specify the graphic options to use when drawing.
The optional idKey property is used to specify the Id attribute of the features.
The optional nameKey property is used to specify the Name attribute of the features.
The optional noAttributesPopup property is used to specify whether or not to add an attribute display popup.
The optional noSelect property is used to specify whether or not to add a onclick selection handler.
The optional shape property is used to specify a shape type coming in.
DrawFeatureCommandOptions are passed into the execution of the DrawFeatureCommand.
var feature = { type: "Feature", geometry: { type: "Point", coordinates: [-82.4414, 29.2001] }, properties: { id: 1, ImAProperty: true } };
var drawOptions = { bucketKey: 'default', idKey: 'ID', nameKey: 'DISTRICT', drawFeatures: [feature], graphicOptions: {}, shape: 'Point', noSelect: false, noAttributesPopup: false }