How to create a simple google maps address search with autocomplete in flutter and get latitude and longitude?

You can use flutter_google_places plugin which shows the places in the autocomplete list as you type it and also returns lat and long of the place/address selected. ===== Working code ======= Add flutter_google_places plugin and import it in your dart file. Add geo_coder plugin and import it in same dart file. (Required to access geocoding … Read more

Places for Android API deprecated alternative

Google Places SDK for Android is Deprecated, so we need to migrate for Places API. For implementing AutoComplete Place using new Places API.. please follow below steps. First enable PlacesAPI in developer console, then install Client Library by updating in gradle. (Note: You can only install either the client library or the compatibility library, NOT … Read more