I have used "Angular 2 + Google Maps Places Autocomplete" search. It is basically an input type text like that:
<input placeholder="search your location" autocorrect="off" autocapitalize="off" spellcheck="off" type="text" #searching="">
I want to know about the list, which appears after typing some text. I want to create such list for my customized input field. If I create the input field in a different child component then I will not be able to apply direct ngModel features of form and validations on it. So I want to append some HTML after input to show the list to select values like Google Autocomplete. I have done this before with jQuery by appending a list after input. Please suggest me......