All Questions
15 questions
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 ...
0
votes
0
answers
59
views
How to integrate google location api with flutter
I'm trying to connect google location api with flutter and I'm getting below error:
D/MapsInitializer(15510): preferredRenderer: null
D/zzcc (15510): preferredRenderer: null
I/zzcc (15510): ...
5
votes
3
answers
1k
views
Flutter conflicting dependency when running integration tests
I have imported two libraries which have classes of the same name. I have tried to reslove the conflict by aliasing the imports across the project where used. I have also tried creating a small blank ...
7
votes
3
answers
3k
views
Path,Roads are black in Google Maps Flutter
when I zoom 14 and more lines look black. When less 14, It is okay.
Image 1
Image 2
@override
Widget build(BuildContext context) {
return GoogleMap(
onMapCreated: (controller) {
...
0
votes
2
answers
143
views
How to fix the problem of overflow pixel in flutter?
I am experience an issue of pixel overflow what i mean here once i use launch() method to tap for popup(email and google-maps) when a user clicks icons for both email and location. It must prompts ...
0
votes
1
answer
2k
views
Flutter google map current location to center point of screen
I am creating a flutter application and using google map inside it, I need to get the position information of center of screen, therefore, I putted an Icon on the middle of screen using center ...
1
vote
0
answers
335
views
Only one marker shown when a list of markers is given to a google map flutter?
I want to create a google map with multiple markers which are updates when the when the values of the database changes, The database changes do happen and can be seen in the front end but the problem ...
3
votes
1
answer
4k
views
flutter firebase I/BufferQueueProducer queueBuffer: slot 0 is dropped, handle=0x79c7c5ec00
I am using flutter, firebase and google API to create a uber clone, this is my main page where I render google map using google map API
It worked but in the console, it renders tone of thing like this:...
-2
votes
2
answers
1k
views
how can i set a button to redirect to my map in FLUTTER?
I'm still a beginner on Flutter and I'm working on an application but I am stuck with a problem :
There is my main.dart:
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
...
-1
votes
1
answer
754
views
How can I execute bloc event continuously in Flutter?
I want to follow user location continuously in my application. For this reason, I want to execute getLocaiton bloc event continuously in my main page. How can I do that?
Here is the my getLocation ...
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. ...
1
vote
4
answers
10k
views
How to Add HeatMaps to Flutter Mobile app
I'm trying to add a Heatmap to GoogleMaps in flutter, I can't find any reference to this in the documentation, is there a way to do so.? I know there is a way to do so on Web.
Is there an alternative ...
2
votes
2
answers
2k
views
How to print several markers google map api 0.5.7 Flutter
I am trying to use google map api last version (0.5.7) but on my map there is only one marker that is printed but there are many markes on the database and it was working well before I tried to put ...
18
votes
2
answers
17k
views
How to disable navigation buttons that appear when tapped a marker in Google maps with Flutter 1.0?
Directions Buttons
I want to remove those buttons because I want to put the route implementation when I tap a button inside a Bottom sheet widget. My other question is, how Can I use the routes in ...
0
votes
2
answers
7k
views
Map View in flutter
Is there any way how make normal Map View in flutter. I need to have map ready when user opens the app. Only thing I saw, is that apptree plugin, but I could only make the map appear after user taps ...