MultipointBuilder

fun MultipointBuilder(multipoint: Multipoint?, block: MultipointBuilder.() -> Unit = {})

Creates a multipoint builder from a multipoint.

Since

200.1.0

See also

Parameters

multipoint

a Multipoint from which to start this builder

block

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


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

Creates a multipoint builder.

Since

200.1.0

Parameters

spatialReference

a SpatialReference from which to start this builder

block

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


fun MultipointBuilder(points: Iterable<Point>, spatialReference: SpatialReference? = null, block: MultipointBuilder.() -> Unit = {})

Creates a multipoint builder with an Iterable of Point.

The spatial reference of the builder will be either the spatial reference of the first point or null if there are no points.

Since

200.1.0

Parameters

points

the points with which to create the builder. All points must have the same spatial reference.

spatialReference

the spatial reference for the builder, defaults to null.

block

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