Modifier and Type | Method and Description |
---|---|
Point |
InfoWindowBase.getCurrentPoint() |
Point |
MapWidget.getPosition()
This point geometry in screen coordinates represent the top-left corner
of the map container.
|
Point |
MapWidget.toMap(Point screenPoint)
Converts a single screen point or an array of screen points to map coordinates.
|
Point |
MapWidget.toScreen(Point mapPoint)
Converts a single map point or an array of map points to screen coordinates.
|
Modifier and Type | Method and Description |
---|---|
void |
MapWidget.centerAndZoom(Point center,
double levelOrFactor)
Centers and zooms the map.
|
void |
MapWidget.centerAt(Point center)
Recenters the map based on map coordinates as the center point.
|
java.lang.String |
MapWidget.getInfoWindowAnchor(Point screenCoords)
Sets an InfoWindow's anchor when calling InfoWindow.show
|
Deferred |
SnappingManager.getSnappingPoint(Point screenPoint)
Returns a deferred object, which can be added to a callback to find the snap point.
|
void |
InfoWindowBase.show(Point loc)
Display the info window at the specified location.
|
Point |
MapWidget.toMap(Point screenPoint)
Converts a single screen point or an array of screen points to map coordinates.
|
Point |
MapWidget.toScreen(Point mapPoint)
Converts a single map point or an array of map points to screen coordinates.
|
Modifier and Type | Method and Description |
---|---|
Point |
InfoWindow.getCoords()
The anchor point of the InfoWindow in screen coordinates.
|
Modifier and Type | Method and Description |
---|---|
void |
InfoWindow.move(Point point)
Moves the InfoWindow to the specified screen point.
|
void |
InfoWindow.show(Point point,
java.lang.String anchor)
Shows the InfoWindow to the specified screen point and anchor.
|
Modifier and Type | Method and Description |
---|---|
Point |
MouseEvent.getMapPoint() |
Point |
MouseEvent.getScreenPoint() |
Modifier and Type | Method and Description |
---|---|
void |
ToolbarGraphicClickHandler.onGraphicClick(Graphic graphic,
Point screenPoint,
Point mapPoint) |
void |
MapExtentChangeHandler.onMapExtentChange(Extent extent,
Point delta,
boolean levelChange,
LOD lod) |
void |
MapPanHandler.onMapPan(Extent extent,
Point delta) |
void |
MapPanEndHandler.onMapPanEnd(Extent extent,
Point endPoint) |
void |
MapPanStartHandler.onMapPanStart(Extent extent,
Point startPoint) |
void |
MapZoomHandler.onZoom(Extent extent,
float zoomFactor,
Point anchor) |
void |
MapZoomEndHandler.onZoomEnd(Extent extent,
float zoomFactor,
Point anchor,
int level) |
void |
MapZoomStartHandler.onZoomStart(Extent extent,
float zoomFactor,
Point anchor,
int level) |
Modifier and Type | Method and Description |
---|---|
static Point |
Point.create(double[] xy,
SpatialReference sr)
Creates a new Point object using an array containing an x,y coordinate value and a spatial reference.
|
static Point |
Point.create(double x,
double y,
SpatialReference sr)
Creates a new Point object using x, y, and a spatial reference.
|
static Point |
Point.create(com.google.gwt.core.client.JavaScriptObject json)
Creates a new Point object using a JSON object.
|
Point |
Extent.getCenter()
Returns the center point of the extent in map units.
|
static Point |
Geometry.getLineIntersection(Point line1start,
Point line1end,
Point line2start,
Point line2end)
Calculates the intersecting point of two lines.
|
Point |
Point.getOffset(double dx,
double dy)
Offsets the point in an x and y direction.
|
Point |
Multipoint.getPoint(int index)
Returns the point at the specified index.
|
Point |
Polyline.getPoint(int pathIndex,
int pointIndex)
Returns a point specified by a path and point in the path.
|
Point |
Polygon.getPoint(int pathIndex,
int pointIndex)
Returns a point specified by a ring and point in the path.
|
Point |
Multipoint.removePoint(int index)
Removes a point from the Multipoint.
|
Point |
Polyline.removePoint(int pathIndex,
int pointIndex)
Remove a point from the polyline at the given pointIndex within the path identified by the given pathIndex.
|
Point |
Polygon.removePoint(int ringIndex,
int pointIndex)
Remove a point from the polygon at the given pointIndex within the ring identified by ringIndex.
|
Point |
Point.setX(double x)
Sets x-coordinate of point.
|
Point |
Point.setY(double y)
Sets y-coordinate of point.
|
static Point |
Geometry.toMapPoint(Extent extent,
float width,
float height,
Point screenPoint)
Deprecated.
Deprecated at v1.1. Use toMapGeometry instead
|
static Point |
Geometry.toScreenPoint(Extent extent,
float width,
float height,
Point mapPoint)
Deprecated.
Deprecated at v1.1. Use toScreenGeometry instead
|
Point |
Point.update(double dx,
double dy)
Updates a point.
|
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JsArray<Point> |
Polyline.removePath(int pathIndex)
Removes a path from the Polyline.
|
com.google.gwt.core.client.JsArray<Point> |
Polygon.removeRing(int pathIndex)
Removes a ring from the Polygon.
|
Modifier and Type | Method and Description |
---|---|
void |
Ring.addPoint(Point point) |
Multipoint |
Multipoint.addPoint(Point point)
Adds a point to the Multipoint.
|
void |
Ring.addPoints(Point[] points) |
Extent |
Extent.centerAt(Point point)
A new extent is returned with the same width and height centered at the argument point.
|
boolean |
Polygon.contains(Point point)
Checks on the client if the specified point is inside the polygon.
|
boolean |
Extent.contains(Point point)
When "true", the geometry in the argument is contained in this extent.
|
static float |
Geometry.getLength(Point point1,
Point point2)
Calculates the length of a line based on the input of two points.
|
static Point |
Geometry.getLineIntersection(Point line1start,
Point line1end,
Point line2start,
Point line2end)
Calculates the intersecting point of two lines.
|
Polyline |
Polyline.insertPoint(int pathIndex,
int pointIndex,
Point point)
Inserts a new point into a polyline.
|
Polygon |
Polygon.insertPoint(int pathIndex,
int pointIndex,
Point point)
Inserts a new point into a polygon.
|
boolean |
Extent.intersects(Point point)
Returns true if the input geometry intersects this extent.
|
Polyline |
Polyline.setPoint(int pathIndex,
int pointIndex,
Point point)
Updates a point in a polyline.
|
Polygon |
Polygon.setPoint(int pathIndex,
int pointIndex,
Point point)
Updates a point in a polygon.
|
Multipoint |
Multipoint.setPoint(int index,
Point point)
Updates the point at the specified index.
|
static Point |
Geometry.toMapPoint(Extent extent,
float width,
float height,
Point screenPoint)
Deprecated.
Deprecated at v1.1. Use toMapGeometry instead
|
static Point |
Geometry.toScreenPoint(Extent extent,
float width,
float height,
Point mapPoint)
Deprecated.
Deprecated at v1.1. Use toScreenGeometry instead
|
Modifier and Type | Method and Description |
---|---|
static boolean |
Geometry.isClockwise(com.google.gwt.core.client.JsArray<Point> ring)
Checks if a Polygon ring is clockwise.
|
Modifier and Type | Method and Description |
---|---|
Point |
TileInfo.getOrigin()
The tiling scheme origin.
|
Point |
MosaicRule.getViewPoint()
Defines the viewpoint location on which the ordering is defined based on the distance from the viewpoint
and the nadir of rasters.
|
Modifier and Type | Method and Description |
---|---|
void |
MosaicRule.setViewPoint(Point viewPoint)
Set the viewPoint value.
|
Modifier and Type | Method and Description |
---|---|
Point |
ImageServiceIdentifyResult.getLocation()
The identified location.
|
Point |
AddressCandidate.getLocation()
X- and y-coordinate of the candidate.
|
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JsArray<Point> |
ServiceAreaSolveResult.getFacilities()
Array of points, only returned if ServiceAreaParameters.returnFacilities is set to true.
|
com.google.gwt.core.client.JsArray<Point> |
ClosestFacilitySolveResult.getFacilities()
An array of points, only returned when ClosestFacilityParameters.returnFacilities is true.
|
com.google.gwt.core.client.JsArray<Point> |
ClosestFacilitySolveResult.getIncidents()
An array of points, only returned when ClosestFacilityParameters.returnIncidents is true.
|
com.google.gwt.core.client.JsArray<Point> |
ServiceAreaSolveResult.getPointBarriers()
The point barriers are an array of points.
|
com.google.gwt.core.client.JsArray<Point> |
ClosestFacilitySolveResult.getPointBarriers()
The point barriers are an array of points.
|
Modifier and Type | Method and Description |
---|---|
Deferred |
Locator.locationToAddress(Point location,
double distance)
Locates an address based on a given point.
|
Deferred |
Locator.locationToAddress(Point location,
double distance,
LocationToAddressCallback callback)
Locates an address based on a given point.
|
Modifier and Type | Method and Description |
---|---|
Point |
VEGeocodeResult.getLocation()
The X and Y coordinates of the result in decimal degrees.
|