Reputation: 49
Flutter geolocator gives me always this latitude and longitude 37.4219983, -122.084 respectively, which is not my real address so how can I improve it.
Upvotes: 3
Views: 2593
Reputation: 2719
Seems like you are using the emulator. That's the default test location given to emulator. If you want to change the location you can change location through extended controls of the emulator.
Running the Flutter application on your device will fetch your live location.
Upvotes: 4