Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## NEXT

* Updates minimum supported SDK version to Flutter 3.29/Dart 3.7.

## 2.12.3

* Updates the example app to use the zIndexInt param instead of the deprecated zIndex.
Expand Down
10 changes: 6 additions & 4 deletions packages/google_maps_flutter/google_maps_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,11 @@ class MapSampleState extends State<MapSample> {
);

static const CameraPosition _kLake = CameraPosition(
bearing: 192.8334901395799,
target: LatLng(37.43296265331129, -122.08832357078792),
tilt: 59.440717697143555,
zoom: 19.151926040649414);
bearing: 192.8334901395799,
target: LatLng(37.43296265331129, -122.08832357078792),
tilt: 59.440717697143555,
zoom: 19.151926040649414,
);

@override
Widget build(BuildContext context) {
Expand All @@ -165,6 +166,7 @@ class MapSampleState extends State<MapSample> {
await controller.animateCamera(CameraUpdate.newCameraPosition(_kLake));
}
}

```

See the `example` directory for a complete sample app.
Loading