Point

constructor(x: Double, y: Double, z: Double, spatialReference: SpatialReference? = null)

Creates a point with an x, y, z and spatial reference. The minimum z-value is -6,356,752 meters, which is the approximate radius of the earth (the WGS 84 datum semi-minor axis). The maximum z-value is 55,000,000 meters.

Since

200.1.0

Parameters

x

The x-coordinate for the point.

y

The y-coordinate for the point.

z

The z-coordinate for the point.

spatialReference

The spatial reference for the point.

See also


constructor(x: Double, y: Double, spatialReference: SpatialReference? = null)

Creates a point with an x, y and a spatial reference. Creates a point with x, y for the coordinates and a spatial reference.

Since

200.1.0

Parameters

x

The x-coordinate for the point.

y

The y-coordinate for the point.

spatialReference

The spatial reference for the point.

See also


constructor(x: Double, y: Double, z: Double? = null, m: Double? = null, spatialReference: SpatialReference? = null)

Creates a point with an x, y, z, m and spatial reference. The minimum z-value is -6,356,752 meters, which is the approximate radius of the earth (the WGS 84 datum semi-minor axis). The maximum z-value is 55,000,000 meters.

Since

200.1.0

Parameters

x

the x-coordinate for the point

y

the x-coordinate for the point

z

the z-coordinate for the point, the default is null.

m

the measure value for the point, the default is null.

spatialReference

the spatial reference of the point, the default is null.