The features to project as a FeatureCollection.
The name property is used to specify the output projection.
The optional url property is used to specify the projection service location.
The optional wkid_in property is used to specify a well-known spatial reference id coming in.
The optional wkid_out property is used to specify the output well-known spatial reference id.
ProjectGeometriesCommandOptions are passed into the execution of the ProjectGeometriesCommand.
var feature = { type: "Feature", geometry: { type: "Point", coordinates: [-82.4414, 29.2001] }, properties: { id: 1, ImAProperty: true } };
var options = { wkid_in: "4326", wkid_out: "3087", name: "Albers", url: "http://thisurl/project", features: [feature] };