GriddedHeatMapDataSource constructor

GriddedHeatMapDataSource({
  1. required List<WeightedLatLng> data,
  2. required double radius,
})

Implementation

GriddedHeatMapDataSource({required this.data, required this.radius})
    : bounds = LatLngBounds.fromPoints(data.map((e) => e.latLng).toList());