GeoJson constructor

GeoJson()

Default constructor

Implementation

GeoJson()
    : features = <GeoJsonFeature<dynamic>>[],
      points = <GeoJsonPoint>[],
      multiPoints = <GeoJsonMultiPoint>[],
      lines = <GeoJsonLine>[],
      multiLines = <GeoJsonMultiLine>[],
      polygons = <GeoJsonPolygon>[],
      multiPolygons = <GeoJsonMultiPolygon>[],
      _processedFeaturesController = StreamController<dynamic>.broadcast(),
      _endSignalController = StreamController<bool>();