Skip to content

Commit d5bd5a3

Browse files
committed
Clean up
1 parent a2c088b commit d5bd5a3

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
@@ -33,7 +33,7 @@ import 'tile_overlay.dart';
3333

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

3838
final List<GoogleMapExampleAppPage> _allPages = <GoogleMapExampleAppPage>[
3939
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)