Skip to content

Commit 065bdd1

Browse files
committed
Clean up
1 parent be481c7 commit 065bdd1

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

packages/google_maps_flutter/google_maps_flutter/example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import 'tile_overlay.dart';
3434

3535
/// Map Id is required for some examples to use advanced markers
3636
// ignore: unnecessary_nullable_for_final_variable_declarations, unreachable_from_main
37-
const String? mapId = 'ffa0cdfef09314e3';
37+
const String? mapId = null;
3838

3939
final List<GoogleMapExampleAppPage> _allPages = <GoogleMapExampleAppPage>[
4040
const MapUiPage(),

packages/google_maps_flutter/google_maps_flutter_android/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/google_maps_flutter/google_maps_flutter_android/example/lib/scrolling_map.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ class ScrollingMapBody extends StatelessWidget {
8282
target: _center,
8383
zoom: 11.0,
8484
),
85-
markers: <AdvancedMarker>{
86-
AdvancedMarker(
85+
markers: <Marker>{
86+
Marker(
8787
markerId: const MarkerId('test_marker_id'),
8888
position: LatLng(
8989
_center.latitude,

0 commit comments

Comments
 (0)