MapObjects constructor
const
MapObjects({
- Set<
Marker> markers = const <Marker>{}, - Set<
Polygon> polygons = const <Polygon>{}, - Set<
Polyline> polylines = const <Polyline>{}, - Set<
Circle> circles = const <Circle>{}, - Set<
Heatmap> heatmaps = const <Heatmap>{}, - Set<
TileOverlay> tileOverlays = const <TileOverlay>{}, - Set<
ClusterManager> clusterManagers = const <ClusterManager>{},
Creates a new set of map objects with all the given object types.
Implementation
const MapObjects({
this.markers = const <Marker>{},
this.polygons = const <Polygon>{},
this.polylines = const <Polyline>{},
this.circles = const <Circle>{},
this.heatmaps = const <Heatmap>{},
this.tileOverlays = const <TileOverlay>{},
this.clusterManagers = const <ClusterManager>{},
});