2

Auto Complete Address

How to AutoComplete an Address and get Lat/Long of that address in #flutter?

Ajay Kumar
  • 15,250
  • 14
  • 54
  • 53
  • Possible duplicate of [How to create a simple google maps address search with autocomplete in flutter and get latitude and longitude?](https://stackoverflow.com/questions/55870508/how-to-create-a-simple-google-maps-address-search-with-autocomplete-in-flutter-a) – Noam Aug 21 '19 at 16:21
  • I created a simple utility class for the problem - https://arkapp.medium.com/flutter-and-google-map-for-beginners-part-1-fdba4ab22148 – abdul rehman Aug 26 '21 at 07:18

2 Answers2

4

This is nothing you can do directly with flutter. You need to call an API for that service. In a recent project I used HERE Autocomplete and HERE Geocoder for such a service, which worked quite well.

In Flutter you just need to work with the responses of those APIs. In my case the FutureBuilder was the perfect solution (there is even an example in the docs which is a good starting point).

Rainer Wittmann
  • 7,528
  • 4
  • 20
  • 34
  • I tried it out, the company is crap. It says I've exceeded the # of projects I'm allowed and I didn't even create 1 project. – Leoog May 05 '19 at 18:11
  • Is there any free service to use map address to lat-long, lat-long to address and place autocomplete provider? Kindly suggest. Thanks a lot. – Kamlesh May 21 '21 at 13:18
  • Checkout my custom utility class for places auto complete https://arkapp.medium.com/flutter-and-google-map-for-beginners-part-1-fdba4ab22148 – abdul rehman Aug 26 '21 at 07:19
3

You have to make HTTP Networking Requests in Flutter to the Place Autocomplete service that is part of the Places API Web Service.

Alexandre Ardhuin
  • 71,959
  • 15
  • 151
  • 132
  • Is there any free service to use map address to lat-long, lat-long to address and place autocomplete provider? Kindly suggest. Thanks a lot. – Kamlesh May 21 '21 at 13:18
  • Implemented the above for easy use - https://arkapp.medium.com/flutter-and-google-map-for-beginners-part-1-fdba4ab22148 – abdul rehman Aug 26 '21 at 07:20