All Questions
4 questions
1
vote
1
answer
67
views
I/Process ( 8266): Sending signal. PID: 8266 SIG: 9 Lost connection to device
I am trying to integrate Google Maps into my Flutter project. I have followed these steps:
Generated a Google Maps API key.
Enabled billing on my Google Cloud account.
Added the necessary permissions ...
0
votes
1
answer
3k
views
Flutter - How to convert a String value to LatLng type using GMaps? [closed]
I'm trying to convert a String value to a LatLng type to add Polylines inside a google map.
I am using this way:
List<LatLng> list = new List<LatLng>();
list.add(new LatLng(double....
0
votes
1
answer
616
views
Native Animation in Flutter Google Maps Plugin does not work
I try to make animatable marker (pulse animation) in flutter app with google_maps_flutter plugin. Because the only way to create custom markers for now is via marker.icon = BitmapDescription
So I ...
3
votes
1
answer
551
views
Is it possible to add opacity to the GoogleMap widget?
I'm attempting to add opacity to the GoogleMap widget but not seeing any changes.
I've previously tried wrapping the entire widget with a Container then adding Opacity and GoogleMap as direct ...