All Questions
Tagged with flutter google-maps
1,266 questions
-2
votes
0
answers
31
views
build an interactive map application [closed]
I would like to develop a mobile application that provides the user with a detailed, geo-located interactive map of a specific area. The goal is to accurately locate the user and provide a pre-defined ...
0
votes
0
answers
27
views
google-navigation-flutter can't start with a custom point
I am developing an app with google-navigation-flutter. The plugin enable users to plan a route and navigate to the destination.
I want to reset the starting point in order to obtain a route between a ...
0
votes
0
answers
19
views
How can I change a cluster's appearance (e.g it's color) in a map?
I am currently using google_maps_flutter to display a map with multiple cluster manangers on screen. I have chosen to use this lib only because I need to pass a Set of ClusterManangers to the map.
...
0
votes
1
answer
21
views
Ignore drag mouse effect from parent of GoogleMap widget in flutter
I have a google map widget inside my program.
child: GoogleMap(
mapType: state.isSatellite ? MapType.hybrid : MapType.normal,
myLocationButtonEnabled: false,
...
0
votes
0
answers
30
views
Flutter: getNextFrame works in app but not in tests (issue compiling custom markers for Google Maps SDK)
I'm building my first Flutter app and I wanted to have some custom markers for the Google Maps SDK (as the default markers aren't great).
I wanted these custom markers to be generated programmatically ...
0
votes
0
answers
20
views
How to stop camera reset when Google Map Widget updates in Flutter
I am working on a Live tracking widget using google maps for flutter. I am using Firebase for the streambuilder and an updateLocation function that periodicly (currently every 10 sec) will fetch the ...
-1
votes
1
answer
45
views
Markers on Google maps in flutter gets a larger touch target on Android compared to iOS
When using Google maps in flutter with markers. The markers will have a larger touch target in Android, compared to iOS.
android touch target
Usually on iOS the touch target is the marker it self, ...
0
votes
0
answers
32
views
Flutter Google Map works on Android version but not on iPhone version
I use the flutter application programming language
I created a page containing Google Maps through which the user specifies his location to save the address and location data in his account when ...
2
votes
1
answer
32
views
Flutter Google map gestures not working inside modal bottom sheet
I'm implementing a bottom sheet in my Flutter app to select a location using Google Maps. While the map displays correctly, gestures like pinch-to-zoom and scroll (pan) do not work when interacting ...
0
votes
2
answers
48
views
Flutter Web - Localhost request to maps.googleapis.com
I am working on a flutter project and have run into an issue where I am unable to make web request to the google maps directions API. https://maps.googleapis.com/maps/api/directions
I have already ...
1
vote
1
answer
33
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
49
views
Trying to implement Google Map in the Flutter Application
I am trying to Implement google map in the flutter application by using google_maps_flutter this package.
But map is not coming in the UI.
I have attached the code below
GoogleMap(
...
0
votes
1
answer
43
views
Flutter app crashes after injecting markers into google maps
My application contains a google map screen, I need to fetch the locations from the api,
my viewModel looks as follow:
class MapViewModel extends ChangeNotifier {
MapRepo repo = MapRepo();
...
2
votes
1
answer
157
views
Securely Injecting Google Maps API Key in Flutter (iOS & Android)
I’m currently trying to add a Google Maps API key to both iOS and Android in my Flutter app without hardcoding it, using environment variables.
To do this, I followed a guide that uses a shell script, ...
0
votes
0
answers
20
views
Keep Flutter Google Map in memory in Flutter to avoid reloading while navigate between pages
I have a homePage in flutter with a flutter_google_map. The problem is when i change page (using go_router), and go again on the homePage, my map always reload and take 2 to 3 sec charging. I want to ...