PointBuilder

constructor(point: Point?, block: PointBuilder.() -> Unit = {})

Creates a point builder from the specified point.

The SpatialReference of the new point builder will match that of the specified Point.

Since

200.1.0

Parameters

point

a Point from which to start this builder

block

a trailing lambda parameter from within which to configure the builder.

See also


constructor(spatialReference: SpatialReference? = null, block: PointBuilder.() -> Unit = {})

Creates an empty point builder with the specified SpatialReference.

The SpatialReference cannot be changed after instantiation.

Since

200.1.0

Parameters

spatialReference

a SpatialReference from which to start this builder, defaults to null.

block

a trailing lambda parameter from within which to configure the builder.