Finding places with the autocomplete option
The Google Maps JavaScript API offers a variety of ways to search for places and additional information. You can apply nearby searches and have detailed information about places together with their geometry, as you have observed in the recipe named Searching and showing nearby places in this chapter.
How about having a text field control with an autocomplete feature for searching places? You can hardcode it, but there is no need to do so, as Google already has a feature exactly for this.
In this recipe, we will go over the autocomplete feature of the places
library for the Google Maps JavaScript API.
Getting ready
This recipe will make use of the concepts related to the places
library introduced in the Searching and showing nearby places recipe of this chapter. It is advised to go over this recipe to have a general understanding of places and their properties.
How to do it...
You can add the text field and search for places with the autocomplete feature...