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

Packages that use Point
com.esri.core.geometry Provides classes for different types of geometries, e.g. 
com.esri.core.internal.value   
com.esri.core.map   
com.esri.core.symbol.advanced   
com.esri.core.tasks.ags.geocode   
com.esri.map   
 

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.internal.value
 

Fields in com.esri.core.internal.value declared as Point
 Point TileInfo.origin
           
 

Methods in com.esri.core.internal.value that return Point
 Point LocalTileInfo.getOrigin()
           
 

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)
          Deprecated. 
static Message MessageHelper.create2525CUpdateMessage(String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes)
          Deprecated. 
static Message MessageHelper.create2525CUpdateMessage(String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes, int WKID)
          Deprecated. 
static Message MessageHelper.create2525CUpdateMessage(String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes, String WKT)
          Deprecated. 
static Message MessageHelper.createUpdateMessage(SymbolDictionary.DictionaryType type, String ID, String messageType, List<Point> controlPoints)
           
static Message MessageHelper.createUpdateMessage(SymbolDictionary.DictionaryType type, String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes)
           
static Message MessageHelper.createUpdateMessage(SymbolDictionary.DictionaryType type, String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes, int WKID)
           
static Message MessageHelper.createUpdateMessage(SymbolDictionary.DictionaryType type, String ID, String messageType, List<Point> controlPoints, Map<String,Object> attributes, String WKT)
           
 

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

Methods in com.esri.core.tasks.ags.geocode that return Point
 Point LocatorFindParameters.getLocation()
          Gets the location point.
 

Methods in com.esri.core.tasks.ags.geocode with parameters of type Point
 LocatorReverseGeocodeResult Locator.locationToAddress(Point point, double distance)
          Executes a reverse-geocoding operation to find address candidates for a given location.
 LocatorReverseGeocodeResult Locator.locationToAddress(Point point, double distance, SpatialReference inSR, SpatialReference outSR)
           Executes a reverse-geocoding operation to find address candidates for a given location.
 void Locator.locationToAddressAsync(Point point, double distance, CallbackListener<LocatorReverseGeocodeResult> callback)
           
 void Locator.locationToAddressAsync(Point point, double distance, SpatialReference inSR, SpatialReference outSR, CallbackListener<LocatorReverseGeocodeResult> callback)
           
 void LocatorFindParameters.setLocation(Point point, SpatialReference spatialReference)
          Sets the search location.
 

Uses of Point in com.esri.map
 

Methods in com.esri.map that return Point
protected  Point MapOverlay.getMouseMapPoint(Point2D mousePoint)
          Convenience method to allow subclasses to convert mouse point to a map point.
 Point JMap.toMapPoint(int screenX, int screenY)
          Converts a point in screen coordinates to a point in map coordinates.
 Point JMap.toScreenPoint(Point src)
          Converts a point in map coordinates to a Point in screen coordinates.
 

Methods in com.esri.map with parameters of type Point
 void GraphicsLayer.movePointGraphic(int id, Point to)
          Moves the Point graphic to the supplied Point location.
 Point JMap.toScreenPoint(Point src)
          Converts a point in map coordinates to a Point in screen coordinates.
 void JMap.zoom(double factor, Point mapPoint)
          Zooms the map by the given factor centered at the given point.
 void JMap.zoomToResolution(double resolution, Point mapPoint)
          Zooms the map to the given resolution.
 void JMap.zoomToScale(double scale, Point mapPoint)
          Zoom the map to the given scale, centered around the given point.
 



Copyright © 2012. All Rights Reserved.