Skip to content

Commit

Permalink
Update google_maps_flutter_ios.dart
Browse files Browse the repository at this point in the history
case has been added
  • Loading branch information
Sofstica-Noor-Fatima authored Jun 13, 2024
1 parent 69ba38d commit 2d0dc09
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,12 @@ class GoogleMapsFlutterIOS extends GoogleMapsFlutterPlatform {
mapId,
MarkerId(arguments['markerId']! as String),
));
case 'heatmap#onTap':
final Map<String, Object?> arguments = _getArgumentDictionary(call);
_mapEventStreamController.add(HeatmapTapEvent(
mapId,
HeatmapId(arguments['heatmapId']! as String),
));
case 'marker#onDragStart':
final Map<String, Object?> arguments = _getArgumentDictionary(call);
_mapEventStreamController.add(MarkerDragStartEvent(
Expand Down Expand Up @@ -667,3 +673,4 @@ class _TileOverlayUpdates extends MapsObjectUpdates<TileOverlay> {
/// Set of TileOverlays to be changed in this update.
Set<TileOverlay> get tileOverlaysToChange => objectsToChange;
}

0 comments on commit 2d0dc09

Please sign in to comment.