Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ProjectGeometriesCommandOptions

ProjectGeometriesCommandOptions are passed into the execution of the ProjectGeometriesCommand.

example



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] };

Hierarchy

  • ProjectGeometriesCommandOptions

Index

Properties

features

features: FeatureCollection

The features to project as a FeatureCollection.

name

name: string

The name property is used to specify the output projection.

Optional url

url: string

The optional url property is used to specify the projection service location.

Optional wkid_in

wkid_in: string

The optional wkid_in property is used to specify a well-known spatial reference id coming in.

Optional wkid_out

wkid_out: string

The optional wkid_out property is used to specify the output well-known spatial reference id.