decode<T extends Geometry> static method

GeometryCollection<T> decode<T extends Geometry>(
  1. Uint8List bytes, {
  2. BinaryFormat<GeometryContent> format = WKB.geometry,
  3. CoordRefSys? crs,
  4. Map<String, dynamic>? options,
})

Decodes a geometry collection with elements of T from bytes conforming to format.

When format is not given, then the geometry format of WKB is used as a default.

Use crs to give hints (like axis order, and whether x and y must be swapped when read in) about coordinate reference system in binary input. When data itself have CRS information it overrides this value.

Format or decoder implementation specific options can be set by options.

See also decodeHex to decode from bytes represented as a hex string.

Implementation

static GeometryCollection<T> decode<T extends Geometry>(
  Uint8List bytes, {
  BinaryFormat<GeometryContent> format = WKB.geometry,
  CoordRefSys? crs,
  Map<String, dynamic>? options,
}) =>
    GeometryBuilder.decodeCollection<T>(
      bytes,
      format: format,
      crs: crs,
      options: options,
    );