Uses of Class
com.esri.core.geometry.SpatialReference

Packages that use SpatialReference
com.esri.android.map Provides classes for all the different elements of a map. 
com.esri.core.geometry Provides classes for different types of geometries, e.g. 
com.esri.core.map Contains classes that define elements from feature and image services. 
com.esri.core.portal Provides mechanisms for connecting to a Portal or Organization and contains classes for constructing a WebMap. 
com.esri.core.symbol.advanced Contains classes for advanced symbol and message processing. 
com.esri.core.tasks.ags.geocode Contains classes for consuming geocode services and parsing the results. 
com.esri.core.tasks.ags.geoprocessing Contains classes for connecting to geoprocessing services and parsing the results. 
com.esri.core.tasks.ags.identify Contains classes for defining identify operations that are executed on an ArcGIS Server. 
com.esri.core.tasks.ags.query Contains classes for defining queries that are executed on an ArcGIS Server. 
 

Uses of SpatialReference in com.esri.android.map
 

Methods in com.esri.android.map that return SpatialReference
 SpatialReference Layer.getDefaultSpatialReference()
          Gets the defaultSpatialReference of the Layer.
 SpatialReference GroupLayer.getDefaultSpatialReference()
          Gets the defaultSpatialReference of the Layer.
 SpatialReference Layer.getSpatialReference()
          Gets the current spatial reference of the Layer.
 SpatialReference MapView.getSpatialReference()
          Returns the spatial coordinate system being used by the MapView.
 

Constructors in com.esri.android.map with parameters of type SpatialReference
GraphicsLayer(SpatialReference sr, Envelope fullextent)
          The constructor with spatial reference and full extent.
MapView(android.content.Context context, SpatialReference spatialreference, Envelope extent)
          The constructor is used if you are instantiating the MapView using Java code (see the class description for an example of this usage).
 

Uses of SpatialReference in com.esri.core.geometry
 

Methods in com.esri.core.geometry that return SpatialReference
static SpatialReference SpatialReference.create(int wkid)
          Creates an instance of the spatial reference based on the provided well known ID for the horizontal coordinate system.
static SpatialReference SpatialReference.create(String wktext)
          Creates an instance of the spatial reference based on the provided well known text representation for the horizontal coordinate system.
static SpatialReference SpatialReference.createLocal()
          Creates a local spatial reference.
static SpatialReference SpatialReference.createLocal(Unit unit)
          Creates a local spatial reference.
static SpatialReference SpatialReference.fromJson(org.codehaus.jackson.JsonParser parser)
          Returns spatial reference from JsonParser.
 SpatialReference SpatialReference.getGCS()
          Get the Geographic Coordinate System of the spatial reference.
 SpatialReference MapGeometry.getSpatialReference()
          Gets the spatial reference for this MapGeometry.
 

Methods in com.esri.core.geometry with parameters of type SpatialReference
static Polygon[] GeometryEngine.buffer(Geometry[] geometries, SpatialReference spatialReference, double[] distances, Unit unit, boolean toUnionResults)
          Calculates a buffer polygon for each geometry at each of the corresponding specified distances.
static Polygon GeometryEngine.buffer(Geometry geometry, SpatialReference spatialReference, double distance, Unit unit)
          Calculates buffer polygon of the geometry as specified by the distance input.
static Geometry GeometryEngine.clip(Geometry geometry, Envelope envelope, SpatialReference spatialReference)
          Calculates the clipped geometry from an target geometry by an envelope.
static boolean GeometryEngine.contains(Geometry geometry1, Geometry geometry2, SpatialReference spatialReference)
          Indicates if one geometry contains another geometry.
static boolean GeometryEngine.crosses(Geometry geometry1, Geometry geometry2, SpatialReference spatialReference)
          Indicates if one geometry crosses another geometry.
static Geometry GeometryEngine.difference(Geometry inputGeometry, Geometry substractor, SpatialReference spatialReference)
          Creates the difference of two geometries.
static double GeometryEngine.distance(Geometry geometry1, Geometry geometry2, SpatialReference spatialReference)
          Calculates the 2D planar distance between two geometries.
static boolean GeometryEngine.equals(Geometry geometry1, Geometry geometry2, SpatialReference spatialReference)
          Indicates if two geometries are equal.
static double GeometryEngine.geodesicLength(Geometry geometry, SpatialReference spatialReference, LinearUnit lengthUnit)
          A geodesic length is the shortest distance between any two points on the earth's surface when the earth's surface is approximated by a spheroid.
static String GeometryEngine.geometryToJson(SpatialReference spatialReference, Geometry geometry)
          Exports the specified geometry instance to its JSON representation.
static Geometry GeometryEngine.intersect(Geometry inputGeometry, Geometry intersector, SpatialReference spatialReference)
          Creates a geometry through intersection between two geometries.
static Point GeometryEngine.project(double x, double y, SpatialReference sr)
          Projects the given point from EPSG:4326 to the output Spatial Reference.
static Geometry GeometryEngine.project(Geometry geometry, SpatialReference inputSR, SpatialReference outputSR)
          Projects the given geometry instance from the input spatial reference to the output Spatial Reference.
 void MapGeometry.setSpatialReference(SpatialReference sr)
          Sets the spatial reference for this MapGeometry.
static Geometry GeometryEngine.simplify(Geometry geometry, SpatialReference spatialReference)
          Performs the simplify operation on the geometry.
static boolean GeometryEngine.touches(Geometry geometry1, Geometry geometry2, SpatialReference spatialReference)
          Indicates if one geometry touches another geometry.
static Geometry GeometryEngine.union(Geometry[] geometries, SpatialReference spatialReference)
          Constructs a new geometry by union an array of geometries.
static boolean GeometryEngine.within(Geometry geometry1, Geometry geometry2, SpatialReference spatialReference)
          Indicates if one geometry is within another geometry.
 

Constructors in com.esri.core.geometry with parameters of type SpatialReference
MapGeometry(Geometry g, SpatialReference _sr)
          Construct a MapGeometry instance using the specified geometry instance and its corresponding spatial reference.
 

Uses of SpatialReference in com.esri.core.map
 

Methods in com.esri.core.map that return SpatialReference
 SpatialReference FeatureSet.getSpatialReference()
          Gets the spatial reference of the FeatureSet.
 SpatialReference MosaicRule.getViewpointSpatialReference()
          Gets the SpatialReference of the ViewPoint.
 

Methods in com.esri.core.map with parameters of type SpatialReference
 void FeatureSet.setSpatialReference(SpatialReference spatialReference)
          Sets the spatial reference of the FeatureSet.
 void MosaicRule.setViewpointSpatialReference(SpatialReference viewpointSpatialReference)
          Sets the SpatialReference of the ViewPoint.
 

Uses of SpatialReference in com.esri.core.portal
 

Methods in com.esri.core.portal that return SpatialReference
 SpatialReference PortalItem.getSpatialReference()
          Returns the SpatialReference of this item.
 

Methods in com.esri.core.portal with parameters of type SpatialReference
static WebMap WebMap.newInstance(BaseMap basemap, Envelope extent, SpatialReference sr)
          Creates a WebMap using a BaseMap and Extent.
static WebMap WebMap.newInstance(org.codehaus.jackson.JsonParser parser, Envelope extent, SpatialReference sr)
          Creates a WebMap using JSON data and Extent.
 

Uses of SpatialReference in com.esri.core.symbol.advanced
 

Methods in com.esri.core.symbol.advanced that return SpatialReference
 SpatialReference MessageProcessor.getDefaultMessageSpatialReference()
          Gets the default message spatial reference.
 

Methods in com.esri.core.symbol.advanced with parameters of type SpatialReference
 void MessageProcessor.setDefaultMessageSpatialReference(SpatialReference sr)
          Sets the default message spatial reference.
 

Uses of SpatialReference in com.esri.core.tasks.ags.geocode
 

Methods in com.esri.core.tasks.ags.geocode that return SpatialReference
 SpatialReference LocatorServiceInfo.getSpatialReference()
          Returns the default spatial reference defined for the Geocode service.
 

Methods in com.esri.core.tasks.ags.geocode with parameters of type SpatialReference
 List<LocatorGeocodeResult> Locator.geocode(Map<String,String> addressFields, List<String> outFields, SpatialReference outSR)
          Executes a geocoding operation to find location candidates for a given address.
The output fields can be specified, passing null will return all the output fields defined for the service.
The location candidates will be returned in the spatial reference passed in the parameters, passing -1 will return the locations in the default spatial reference defined for the service.
 LocatorReverseGeocodeResult Locator.reverseGeocode(Point point, double distance, SpatialReference inSR, SpatialReference outSR)
           Executes a reverse-geocoding operation to find address candidates for a given location.
A distance in meters from the given location within which a matching address should be searched must be provided, 0 if non is desired.
The input spatial reference can be specified if the location coordinates are in a different spatial reference than the one expected by the service.
An Output spatial reference can be specified if the coordinates for the address candidates are wanted in a different spatial reference than the one defined in the service.
 

Uses of SpatialReference in com.esri.core.tasks.ags.geoprocessing
 

Methods in com.esri.core.tasks.ags.geoprocessing that return SpatialReference
 SpatialReference Geoprocessor.getOutSR()
          Returns the output spatial reference set for this geoprocessing task.
 SpatialReference Geoprocessor.getProcessSR()
          Returns the process spatial reference set for this geoprocessing task.
 SpatialReference GPFeatureRecordSetLayer.getSpatialReference()
          Gets the spatial reference.
 

Methods in com.esri.core.tasks.ags.geoprocessing with parameters of type SpatialReference
 void Geoprocessor.setOutSR(SpatialReference outSR)
          Sets the well-known ID of the spatial reference of the output geometries.
 void Geoprocessor.setProcessSR(SpatialReference processSR)
          Sets the well-known ID of the spatial reference that the model will use to perform geometry operations.
 void GPFeatureRecordSetLayer.setSpatialReference(SpatialReference spatialReference)
          Sets the spatial reference.
 

Uses of SpatialReference in com.esri.core.tasks.ags.identify
 

Methods in com.esri.core.tasks.ags.identify that return SpatialReference
 SpatialReference IdentifyParameters.getSpatialReference()
          Returns the spatial reference of the map extent.
 

Methods in com.esri.core.tasks.ags.identify with parameters of type SpatialReference
 void IdentifyParameters.setSpatialReference(SpatialReference spatialReference)
          Sets the spatial reference of the map extent.
 

Constructors in com.esri.core.tasks.ags.identify with parameters of type SpatialReference
IdentifyParameters(Geometry geometry, Envelope mapExtent, SpatialReference extentSR, int[] layers, int mapWidth, int mapHeight, int dpi, boolean returnGeometry)
          Constructor with required parameters.
 

Uses of SpatialReference in com.esri.core.tasks.ags.query
 

Methods in com.esri.core.tasks.ags.query that return SpatialReference
 SpatialReference Query.getInSpatialReference()
          Returns the spatial reference of the input geometry.
 SpatialReference Query.getOutSpatialReference()
          Returns the spatial reference of the returned geometry.
 SpatialReference RelationshipQuery.getOutSpatialReference()
          Gets the spatial reference of the returned geometry.
 

Methods in com.esri.core.tasks.ags.query with parameters of type SpatialReference
 void Query.setInSpatialReference(SpatialReference inSR)
          Sets the spatial reference of the input geometry.
 void Query.setOutSpatialReference(SpatialReference outSR)
          Sets the spatial reference of the returned geometry.
 void RelationshipQuery.setOutSpatialReference(SpatialReference outSR)
          Sets the spatial reference of the returned geometry.
 



Copyright © 2012. All Rights Reserved.