parseCollection method

GeometryCollection parseCollection(
  1. ValueGetter data
)

Implementation

GeometryCollection parseCollection(ValueGetter data) {
  List<Geometry> geoms = [];
  parseGeometryArrayWithGetInt(data, geoms);
  return gf.createGeometryCollection(geoms);
}