spatialReference property

SpatialReference? spatialReference

The spatial reference to be used by feature geometries in the table.

The default spatial reference is null and represents a non-spatial table. When setting to a non-null spatial reference, the geometry type also needs to be specified via the TableDescription.geometryType property.

Implementation

SpatialReference? get spatialReference => _spatialReference.value;
void spatialReference=(SpatialReference? value)

Implementation

set spatialReference(SpatialReference? value) =>
    _spatialReference.value = value;