Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert platform interface changes
  • Loading branch information
Rexios80 committed Aug 5, 2024
commit ebdb9859c83fcbe1c9c32d4430a7fb70c512ec65
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,6 @@ class MethodChannelGoogleMapsFlutter extends GoogleMapsFlutterPlatform {
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>{},
Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers,
Expand Down Expand Up @@ -675,7 +674,6 @@ class MethodChannelGoogleMapsFlutter extends GoogleMapsFlutterPlatform {
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>{},
Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers,
Expand All @@ -690,7 +688,6 @@ class MethodChannelGoogleMapsFlutter extends GoogleMapsFlutterPlatform {
polygons: polygons,
polylines: polylines,
circles: circles,
heatmaps: heatmaps,
tileOverlays: tileOverlays,
clusterManagers: clusterManagers,
gestureRecognizers: gestureRecognizers,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,6 @@ abstract class GoogleMapsFlutterPlatform extends PlatformInterface {
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<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers =
const <Factory<OneSequenceGestureRecognizer>>{},
Expand Down Expand Up @@ -441,7 +440,6 @@ abstract class GoogleMapsFlutterPlatform extends PlatformInterface {
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>{},
Map<String, dynamic> mapOptions = const <String, dynamic>{},
}) {
Expand All @@ -453,7 +451,6 @@ abstract class GoogleMapsFlutterPlatform extends PlatformInterface {
polygons: polygons,
polylines: polylines,
circles: circles,
heatmaps: heatmaps,
tileOverlays: tileOverlays,
gestureRecognizers: gestureRecognizers,
mapOptions: mapOptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ class BuildViewGoogleMapsFlutterPlatform extends GoogleMapsFlutterPlatform {
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>{},
Set<Factory<OneSequenceGestureRecognizer>>? gestureRecognizers =
Expand Down