I'm working on an app that uses the google_maps_flutter plugin (version 0.5.7) to display a map. It was working just perfectly until yesterday. I didn't do any updates to my app, it just stopped displaying a blank map when I opened it today. Flutter Doctor doesn't show any problem, and the same with Flutter Analyze. The plugin seems to be partially working, because I'm using the GoogleMap onTap property to show the coordinates of the location tapped, and it works just fine (I/flutter (11935): LatLng(25.895589930847475, -80.28307791799307), although the marker is not created.
_handleTap(LatLng point) {
setState(() {
print(point);
_markers.add(Marker(
markerId: MarkerId(point.toString()),
position: point,
infoWindow: InfoWindow(
title: point.toString(),
),
icon: BitmapDescriptor.defaultMarkerWithHue(BitmapDescriptor.hueMagenta),
));
});
}
Any ideas, what could be happening? Has any issue been reported for this plugin that could cause this issue?

I would suggest going back to the API keys you created in step 3 and then restricting one to iOS apps and the Maps SDK for iOS and the other to Android and the Maps SDK for Android.
[1]: https://cloud.google.com/console/google/maps-apis/overview
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With