All Questions
10 questions
1
vote
0
answers
254
views
Google Maps styling applies only above zoom level 13, below that roads turn black instead of styled color
I'm using Flutter with the Google Maps Flutter plugin to display a map in my application. I've applied custom styling to the map using the setMapStyle method to change the color of roads to a specific ...
1
vote
1
answer
191
views
Using google maps api key in open source GitHub repository in Flutter app
I am developing an open source Google Maps project by Flutter and I do not want the GMS API to appear in my repo when I integrate with Google Maps. I don't know how I can use the variable in the .env ...
2
votes
2
answers
402
views
Google Map displays with empty location even with valid api key in flutter when app is launched and works properly when i do multiple hot reload
I am trying to embed native android view of google map in my flutter app. I know we already have google_map_plugin on pub.dev but to improve myself as a developer i am trying to integrate native ...
0
votes
1
answer
576
views
google_maps_flutter plugin not working on Android shows Error Bad state: Future already completed
I am using the google_maps_flutter plugin to use google maps, I followed their instructions of setting up the minSdkVersion and including the API key in AndroidManifest.xml file. I am using their ...
4
votes
2
answers
18k
views
Unhandled Exception: type 'String' is not a subtype of type 'Uri'
I have been working on a flutter mobile project of a taxi clone app. I have used Google Maps API for GeoCoding and Directions. I have been following a tutorial on youtube (the link). When I run the ...
0
votes
1
answer
447
views
clearMarkers() and addMarker() doesn't work
I found a code in a tutorial that no longer works. After doing some research, I realized that the google maps api had been changed and the code was therefore no longer working. The tutorial is from ...
1
vote
0
answers
440
views
Implementing SMS "Share my current location" in flutter
In the messaging app on my android phone, I can share my location. When I share my location, it appears as a text message with a little map preview. The map preview is not a full, embedded map, i.e. ...
16
votes
11
answers
12k
views
Flutter GoogleMap is blank after resuming from background
I'm experiencing the following issue: My Flutter app uses a GoogleMap. The map loads just fine initially. However, if I put the app into the background and resume a while later, the map stays blank. ...
0
votes
1
answer
925
views
How add locale support to google_map_location_picker ? (Flutter)
How can I add support for "ru" and "kz" Locale in Flutter google_map_location_picker plugin? I tried this
MaterialApp(
localizationsDelegates: [
// ... app-specific localization ...
1
vote
1
answer
2k
views
How to draw routes between source and destination using Google Map in Flutter?
I recently started working on Flutter and started to build an app but now I was hoping to integrate google maps. I started to look more into google_maps_flutter and started to build the map but one ...