This is my first Flutter/dart project so I am a bigginer, this project is for a school use only. Everything else works just fine... <pre><code>import 'dart:async';...
I am using Google map in my flutter application and added below line in pubspec.yaml file : <pre><code>custom_marker: ^1.0.0 </code></pre> performed pub get, bu...
<a href="https://youtu.be/dq-ksuP0zEc" rel="nofollow noreferrer">The video example in YouTube.</a> I want to animate markers on <a href="https://pub.dev/packages/googl...
I'm trying to load a detail page when clicking on an InfoWindow and I'm using the data loaded in the markers as a parameter, but unfortunately I'm getting an error, co...
in my flutter code, I am launching Google Maps app with a predefined location, on a button click. Below is the code <pre><code> _launchMaps(double lat, double lon)...
To display custom widgets on google maps <a href="https://pub.dev/packages/google_maps_flutter" rel="nofollow noreferrer">google_maps_flutter</a> I use a very convenie...
I have managed to create a google map in my flutter app and I am able to show my location and also markers using latitude and longitude. Does anyone know how to create...
I can show Google Map on my Flutter app by using the code below <pre><code> final marker = Marker( markerId: MarkerId(someID),...
<strong>This is what i have:</strong> <a href="https://i.stack.imgur.com/TCll5.png" rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/TCll5.png" alt="enter...
I have some markers and the icons of the markers change based on a firebase field (called status). status is a bool (true/false). This status value changes in the data...
How can the user add multiple markers when user long press on the map. in this code, I've done single map. when user long press on the map it will automatically add on...
I cannot display the current location of my mobile device. The error is: E/GoogleMapController( 4641): Cannot enable MyLocation layer as location permissions are not g...
I have two list in my project but in this particular page i will need to retrieve the data from two <code>list</code> to display all the marker i have. I am using Fire...
I want to place a marker at the latitude and longitude that the user clicks on in my Google Maps Flutter application. Everything I have found so far has been JavaScrip...
I've created a map widget that uses the google_maps_flutter package. <pre><code> SizedBox( height:MediaQuery....