How can I get the LatLng
of user's current location when using google_maps_flutter
plugin?
I wish there had been something like:
GoogleMap(
onLocationChanged: (latLng) {
// Something like this callback ...
}
)
PS: I don't wish to use any other plugin.
Maybe what you need is the location package from Flutter dev.
With that you can just listen for location changes, and maybe update your current location variable.
Something like: