Questions tagged [google-maps-flutter]
226 questions
0
votes
1 answer
How I can send request to the nearest app user just like Uber in flutter
I want to create an application just like Uber using Firebase. I do not under stand how I can show the nearest application user on google map using costume markers and how I can send the request to the all nearest application users at same time just…

wahabsohail
- 55
- 1
- 8
0
votes
0 answers
I need to separate gestures for dragging the map and marker's onTap google_maps_flutter
Use case
hey everybody. my problem is calling callback only when a user drags the map in some direction and not when he taps on the marker. I was trying to add the solution described here.
gestureRecognizers: Set()
…

Kley
- 93
- 1
- 1
- 8
0
votes
2 answers
Google Maps Markers from Firebase LatLng don't appear on map
I am trying to add some markers from firebase on google maps and can't figure out why the marks don't appear on google maps (on the UI). Can someone help me or suggest me an updated tutorial?
void main() => runApp(Parkings());
class Parkings…

Andreea Purta
- 642
- 6
- 14
0
votes
1 answer
integrating the user location doesn't work
I tried to build an application, which shows the current user location. In order to achieve this goale, I used Google-Map and location plug-in. I tried a sample I found in the internet, but I get an error and don't know why... I think I did it the…

SOS video
- 436
- 9
- 21
0
votes
1 answer
Change size of a custom marker Google-Maps
I created an application, which shows a custom marker in Google Maps when you tap in the map, but I don't find a way to change the size of the marker... Does anybody know how I can do this?
This are parts of m code:
createMarker(context) {
if…

SOS video
- 436
- 9
- 21
0
votes
1 answer
How to programatically getting current users location to load on a map in flutter
Please help. I am trying to get the initialCameraPosition to programmatically display the current location of a user on a map. I don't want to hard code it.
I have a getCurrentLocation method but I can't seem to use the result (its lat and lon) as…

Oscar Ogar
- 13
- 5
0
votes
2 answers
google_maps_flutter displays blank map on some Android Simulators and Devices
I have a basic flutter app to which I've added google_maps_flutter:
https://bitbucket.org/ne-paul/fmtmaptest/src/master/
using the instructions from here:
https://pub.dev/packages/google_maps_flutter
I can only get it to work on one Android…

Paul Grenyer
- 1,713
- 3
- 30
- 51
0
votes
0 answers
Flutter with flutter_google_places, Autocomplete not showing result
I have trouble with flutter_google_places. The autocomplete doesn't work and returns E/SpannableStringBuilder(32620): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length in the console.
I have a registered api_key.
Here is the code
import…

Sir_Joan_the_third
- 15
- 6
0
votes
1 answer
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 edit plugin source code. Its possible to add own…

Den
- 1,456
- 16
- 17
0
votes
1 answer
How to turn off the 'find me' FAB in Flutter Google maps plugin?
I am having zero luck turning off the floating action button which exists on the Google maps view in Flutter. I have tried restarting the app, hotreload, delete/reinstall, no luck.
Here's my code:
return Card(
child: GoogleMap(
…

S Galway
- 125
- 2
- 11
0
votes
1 answer
Execution failed for task ':google_maps_flutter:compileDebugJavaWithJavac' in Flutter
Was in the process of integration and this error kept occuring tried multiple answers such as using flutter clean or changing the CompiledSdk to no avail. i am debugging on Pixel 2 XL Api level 27.
Here is the output of flutter run -v :…

Firas BENMBAREK
- 306
- 1
- 10
0
votes
1 answer
How to handle "gps" location provider requires ACCESS_FINE_LOCATION permission. in flutter apps
Hi I am trying to get user location by using location package and google-maps-flutter in flutter.. but I get an error that say "gps" location provider requires ACCESS_FINE_LOCATION permission. I have added this code in my androidmanifest…

wahyu
- 1,679
- 5
- 35
- 73
0
votes
1 answer
how to get user current position as initial location in flutter google maps
I am trying to get my current position as my initial position in google maps flutter.. but I always get error that says like this...initialCameraPosition !=null is not true so far I have tried using async await to get my current location.. here is…

wahyu
- 1,679
- 5
- 35
- 73
0
votes
2 answers
How to add multiple markers inside google maps of flutter
I am trying to add more than one marker in my google maps screen.. but I didn't get any idea how to do that.. I have applied some examples in some articles.. but I get an error...here is part of my code..
GoogleMap(
…

wahyu
- 1,679
- 5
- 35
- 73
0
votes
1 answer
How to display multiple GoogleMaps in a list with Flutter
I try to display multiple cards in a list.
Each card is displaying a google maps (using google_maps_flutter plugin) .
When I try to display multiple cards / maps. A crash occurs (on iOS).
The crash: Flutter`SkPictureRecorder::getRecordingCanvas:
It…

fvisticot
- 7,936
- 14
- 49
- 79