Skip to content

Commit

Permalink
fix: merge and commit issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jokerttu committed Nov 25, 2024
1 parent d40c5e4 commit 6bc7717
Show file tree
Hide file tree
Showing 8 changed files with 1,822 additions and 1,286 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ void runTests() {
final StreamQueue<void> cameraFiredQueue =
StreamQueue<void>(cameraFiredStream.stream);

const int shortCameraAnimationDurationMS = 10;
const int shortCameraAnimationDurationMS = 200;
const int longCameraAnimationDurationMS = 1000;

/// Calculate the midpoint duration of the animation test, which will
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@ void googleMapsTests() {
final StreamQueue<void> cameraFiredQueue =
StreamQueue<void>(cameraFiredStream.stream);

const int shortCameraAnimationDurationMS = 10;
const int shortCameraAnimationDurationMS = 200;
const int longCameraAnimationDurationMS = 1000;

/// Calculate the midpoint duration of the animation test, which will
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1393,7 +1393,7 @@ void main() {
final StreamQueue<void> cameraFiredQueue =
StreamQueue<void>(cameraFiredStream.stream);

const int shortCameraAnimationDurationMS = 10;
const int shortCameraAnimationDurationMS = 200;
const int longCameraAnimationDurationMS = 1000;

/// Calculate the midpoint duration of the animation test, which will
Expand Down

Large diffs are not rendered by default.

1,697 changes: 1,011 additions & 686 deletions packages/google_maps_flutter/google_maps_flutter_ios/ios/Classes/messages.g.m

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,8 @@ class GoogleMapsFlutterIOS extends GoogleMapsFlutterPlatform {
CameraUpdate cameraUpdate, {
required int mapId,
}) {
return _hostApi(mapId)
.animateCamera(_platformCameraUpdateFromCameraUpdate(cameraUpdate), null);
return _hostApi(mapId).animateCamera(
_platformCameraUpdateFromCameraUpdate(cameraUpdate), null);
}

@override
Expand All @@ -358,7 +358,7 @@ class GoogleMapsFlutterIOS extends GoogleMapsFlutterPlatform {
required int mapId,
}) {
return _hostApi(mapId).animateCamera(
PlatformCameraUpdate(json: cameraUpdate.toJson()),
_platformCameraUpdateFromCameraUpdate(cameraUpdate),
configuration.duration?.inMilliseconds);
}

Expand Down
Loading

0 comments on commit 6bc7717

Please sign in to comment.