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

Packages that use Point
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.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. 
 

Uses of Point in com.esri.android.map
 

Methods in com.esri.android.map that return Point
 Point MapView.getCenter()
          Returns the center of the MapView as an ArcGIS geometry Point.
 Point Callout.getCoordinates()
          Returns the map coordinates of the anchor point.
 Point TiledServiceLayer.TileInfo.getOrigin()
          Returns the origin point
 Point LocationService.getPoint()
          Returns the current coordinates in the map's spatial reference.
 Point MapView.toMapPoint(float screenx, float screeny)
          A convenience method that will convert a device's screen coordinates to an ArcGIS geometry Point that has the same spatial coordinate system as the MapView's.
 Point MapView.toMapPoint(Point src)
          A convenience method that will convert a device's screen coordinates into an ArcGIS geometry Point that has the same spatial coordinate system as the MapView's.
 Point MapView.toScreenPoint(Point src)
          A convenience method that will convert an ArcGIS geometry Point from the MapView's spatial coordinate system into the device's screen coordinates.
 

Methods in com.esri.android.map with parameters of type Point
 void Callout.animatedShow(Point coordinates, android.view.View newContent)
          Displays the callout window with animation at the given coordinates with the provided content.
 void MapView.centerAt(Point centerPt, boolean animated)
          If the MapView is initialized, centers the map at the given point.
 void Callout.move(Point newCoordinates)
          Moves the callout window to the provided coordinates.
 void GraphicsLayer.moveAllGraphics(Point from, Point to)
          Moves all graphics by offset determined by from point and to point.
 void Callout.setCoordinates(Point coordinates)
          Sets the anchor of the callout window to the given point in the map spatial reference.
 void Callout.show(Point coordinates)
          Displays the callout window at the given point in the spatial reference of map view.
 void Callout.show(Point coordinates, android.view.View newContent)
          Displays the callout window at the given point with the provided content.
 Point MapView.toMapPoint(Point src)
          A convenience method that will convert a device's screen coordinates into an ArcGIS geometry Point that has the same spatial coordinate system as the MapView's.
 Point MapView.toScreenPoint(Point src)
          A convenience method that will convert an ArcGIS geometry Point from the MapView's spatial coordinate system into the device's screen coordinates.
 void MapView.zoomTo(Point centerPt, float factor)
          If the MapView is initialized, zooms the map by a factor to the given center point.
 void MapView.zoomToResolution(Point centerPt, double res)
          Centers the map on the given point and zoom into the given resolution level.
 void MapView.zoomToScale(Point centerPt, double scale)
          Centers the map on the given point and zoom into the given scale level.
 

Constructors in com.esri.android.map with parameters of type Point
TiledServiceLayer.TileInfo(Point origin, double[] scale, double[] res, int levels, int dpi, int tileWidth, int tileHeight)
          Constructs the TileInfo object.
 

Uses of Point in com.esri.core.geometry
 

Methods in com.esri.core.geometry that return Point
 Point[] SpatialReference.fromMilitaryGrid(String[] mgrsStrings, int mgrsConversionMode)
          Converts Military Grid strings into coordinates.
 Point Envelope.getCenter()
          Returns the center point of the envelope.
 Point Proximity2DResult.getCoordinate()
          Returns the closest coordinate for OperatorProximity2D.getNearestCoordinate or the vertex coordinates for the OperatorProximity2D.getNearestVertex and OperatorProximity2D.getNearestVertices.
 Point Envelope.getLowerLeft()
          Returns the envelope's lower left corner point.
 Point Envelope.getLowerRight()
          Returns the envelope's lower right corner point.
 Point MultiPath.getPoint(int index)
           
 Point MultiPoint.getPoint(int index)
           
 Point Envelope.getUpperLeft()
          Returns the envelope's upper left corner point.
 Point Envelope.getUpperRight()
          Returns the envelope's upper right corner point.
static Point GeometryEngine.project(double x, double y, SpatialReference sr)
          Projects the given point from EPSG:4326 to the output Spatial Reference.
 

Methods in com.esri.core.geometry with parameters of type Point
 void MultiPoint.add(Point point)
          Adds a point multipoint.
 void Envelope.centerAt(Point c)
          Centers the envelope around the specified point preserving the envelope's width and height.
 void Envelope.centerAt(Point c, double w, double h)
          Sets the envelope's corners to be centered around the specified point, using it's center, width, and height.
 boolean Envelope.contains(Point p)
          Checks if this envelope contains (covers) the specified point.
static Proximity2DResult GeometryEngine.getNearestCoordinate(Geometry geometry, Point inputPoint, boolean bTestPolygonInterior)
          Finds the coordinate of the geometry which is closest to the specified point.
static Proximity2DResult GeometryEngine.getNearestVertex(Geometry geometry, Point inputPoint)
          Finds nearest vertex on the geometry which is closed to the specified point.
static Proximity2DResult[] GeometryEngine.getNearestVertices(Geometry geometry, Point inputPoint, double searchRadius, int maxVertexCountToReturn)
          Finds all vertices in the given distance from the specified point, sorted from the closest to the furthest.
 void MultiPath.insertPoint(int pathIndex, int beforePointIndex, Point pt)
          Inserts a point.
 void MultiPoint.insertPoint(int beforePointIndex, Point pt)
          Inserts a point to this multipoint.
 void MultiPath.lineTo(Point endPoint)
          Adds a Line Segment to the given end point.
 void Envelope.merge(Point point)
          Merges this envelope with the point.
 void Envelope.queryCornerByVal(int index, Point ptDst)
          Sets the point's coordinates to the coordinates of the envelope at the given corner.
 void Segment.queryEnd(Point dstPoint)
          Returns coordinates of the end point in this segment.
 void Segment.queryStart(Point dstPoint)
          Returns coordinates of the start point in a Point class.
 void Segment.setEnd(Point srcPoint)
          Sets the coordinates of the end point in a Point class.
 void MultiPath.setPoint(int index, Point point)
           
 void MultiPoint.setPoint(int index, Point pointSrc)
           
 void Segment.setStart(Point srcPoint)
          Sets the coordinates of the start point in this segment.
 void MultiPath.startPath(Point point)
          Starts a new path at a point.
 String[] SpatialReference.toMilitaryGrid(int mgrsConversionMode, int numOfDigits, boolean rounding, boolean addSpaces, Point[] coordinates)
          Converts a list of coordinates into military grid strings.
 void Transformation2D.transform(Point[] pointsIn, int count, Point[] pointsOut)
          Transforms an array of points.
 void Transformation2D.transform(Point[] pointsIn, int count, Point[] pointsOut)
          Transforms an array of points.
 

Constructors in com.esri.core.geometry with parameters of type Point
Envelope(Point point)
          Constructs an envelope that covers the given point.
Envelope(Point center, double width, double height)
          Creates an envelope by defining its center, width, and height.
 

Uses of Point in com.esri.core.map
 

Methods in com.esri.core.map that return Point
 Point MosaicRule.getViewpoint()
          Gets the viewpoint location on which the ordering is defined based on the distance from the viewpoint and the nadir of rasters.
 

Methods in com.esri.core.map with parameters of type Point
 void MosaicRule.setViewpoint(Point viewpoint)
          Sets the viewpoint location on which the ordering is defined based on the distance from the viewpoint and the nadir of rasters.
 

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

Method parameters in com.esri.core.symbol.advanced with type arguments of type Point
static Message MessageHelper.create2525CUpdateMessage(String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes)
          Creates a 2525C message to update the symbol.
static Message MessageHelper.create2525CUpdateMessage(String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes, int WKID)
          Creates a 2525C message to create or update the symbol.
static Message MessageHelper.create2525CUpdateMessage(String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes, String WKT)
          Creates a 2525C message to create or update the symbol.
 

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

Methods in com.esri.core.tasks.ags.geocode with parameters of type Point
 LocatorReverseGeocodeResult Locator.reverseGeocode(Point point, double distance)
          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.
 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.
 



Copyright © 2012. All Rights Reserved.