AbstractAbstractboundsThe bounds of this shape. This property is to be treated in a read only manner. An error will be thrown when trying to assign to this property. Note that the bounds property is not immutable. Modifying properties of the bounds property may corrupt your data.
AbstractcoordinateThe coordinate type this shape. This property is read only. An Error will be thrown when trying to assign to this property.
AbstractfocusThe focus point of this shape. This property is read only. An error will be thrown when trying to assign to this property. This property contains an object but should be treated with value semantics: changes to the shape will not be reflected in the focusPoint that was retrieved from this Polygon before the modification.
The spatial reference of this shape. This property is read only. An Error will be thrown when trying to assign to this property.
AbstracttypeAbstractxThe x coordinate of the Point. For a point that is defined in a geodetic spatial reference this property returns the longitude. Assigning to the x property of a point with a geodetic spatial reference will normalize the coordinate to the interval [-180, 180]. E.g. if you assign a value or 380 to the x property, it will be normalized to 20;
AbstractyThe y coordinate of the Point. For a point that is defined in a geodetic spatial reference this property returns the latitude. Assigning to the y property of a point with a geodetic spatial reference will normalize the coordinate to the interval [-90, 90]. E.g. if you assign a value of 100 to the y property, it will be normalized to 90;
AbstractzThe z coordinate of the Point. The z coordinate typically corresponds with height.
Determines whether a given point is inside this shape. This method checks containment only in two dimensions: on the (x,y)-axis or the (lon,lat)-axis (depending on the spatial reference of the shape).
true when the given point is contained in this shape
Please use contains2DPoint instead.
Abstractcontains2DCoordinatesDetermines whether the given point is inside this shape. This method checks containment only in two dimensions: on the (x,y)-axis or the (lon,lat)-axis (depending on the spatial reference of the shape).
The x coordinate of the point for which containment must be checked
The y coordinate of the point for which containment must be checked
true when the given point is contained in this shape
Determines whether the given point is inside this shape. This method checks containment only in two dimensions: on the (x,y)-axis or the (lon,lat)-axis (depending on the spatial reference of the shape).
The point for which containment must be checked.
true when the given point is contained in this shape
InvalidReferenceError when a point has another spatial reference
AbstractcopyAbstractequalsIndicates whether this shape is equal to another.
the other shape this shape is compared with.
true if both shapes are equal, false otherwise.
Moves this Point to another location. The passed x and y will become the x and y coordinates of this point. The z coordinate of this Point remains unmodified.
x coordinate value or a Point instance
Optionaly: numbery coordinate value
Abstractmove2DToMoves this Point to another location. The passed x and y will become the x and y coordinates of this point. The z coordinate of this Point remains unmodified.
x coordinate value
y coordinate value
Moves this Point to another location. This Point will be moved to the same location of the Point that was passed. The z coordinate of the point that was passed will be ignored.
a Point instance
InvalidReferenceError when the reference of the Point parameter does not correspond with the reference of this Point.
Moves this Point to another location. The passed x,y and z coordinates will become the x, y and z coordinates of this point.
x coordinate value or a Point instance.
Optionaly: numbery coordinate value
Optionalz: numberz coordinate value
Abstractmove3DToMoves this Point to the given x, y and z coordinates.
x coordinate value
y coordinate value
z coordinate value
Moves this point to the same location of the given Point.
a Point instance
InvalidReferenceError when the reference of the Point parameter does not correspond with the reference of this Point.
AbstracttoConverts the shape to a string. This functionality is for debugging purposes only. Results of toString cannot be used to uniquely identify a shape instance.
OptionalexcludeType: booleanTranslates this Point from its current position over the given translation vector to another location. This method can be called with an x, y and optionally a z value. If the z coordinate is not specified, the translation will only affect the x and y coordinate.
x coordinate value
y coordinate value
Optionalz: numberz coordinate value, may be omitted.
Abstracttranslate2DTranslates the shape over the given vector in 2D space.
The x coordinate of the translation vector
The y coordinate of the translation vector
Abstracttranslate3DTranslates this Point from its current position over the given translation vector to another location.
x coordinate value
y coordinate value
z coordinate value
Represents a point in 3 (x, y, z) dimensions in the context of a spatial reference. A ShapeFactory module. For a geodetic spatial reference, the
xandyproperties correspond with longitude and latitude on the ellipsoid. Note: If latitude (theyproperty in this context) for a geodetic point is initially set outside the valid range of [-90, 90] degrees, it is automatically clamped to this range for accuracy. For projected spatial references, thexandyproperties correspond with thexandyaxes in Cartesian space. Thezproperty always corresponds with height.